PUT api/common/verifyemail

Request Information

URI Parameters

None.

Body Parameters

APIVerifyAuthRequest
NameDescriptionTypeAdditional information
Email

string

None.

CustomerId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Email": "sample string 1",
  "CustomerId": 2
}

application/xml, text/xml

Sample:
<APIVerifyAuthRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
  <CustomerId>2</CustomerId>
  <Email>sample string 1</Email>
</APIVerifyAuthRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

APIVerifyEmailResult
NameDescriptionTypeAdditional information
Status

boolean

None.

Message

string

None.

Phone

string

None.

IsInternal

boolean

None.

IsImported

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": true,
  "Message": "sample string 2",
  "Phone": "sample string 3",
  "IsInternal": true,
  "IsImported": true
}

application/xml, text/xml

Sample:
<APIVerifyEmailResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
  <IsImported>true</IsImported>
  <IsInternal>true</IsInternal>
  <Message>sample string 2</Message>
  <Phone>sample string 3</Phone>
  <Status>true</Status>
</APIVerifyEmailResult>