POST api/Values/EmailIsUnique
Request Information
URI Parameters
None.
Body Parameters
CustomerEmailModel| Name | Description | Type | Additional information |
|---|---|---|---|
| string |
Required |
Request Formats
application/json, text/json
Sample:
{
"Email": "sample string 1"
}
application/xml, text/xml
Sample:
<CustomerEmailModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QuickSilverModel.Models"> <Email>sample string 1</Email> </CustomerEmailModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
EmailIsUniqueResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| EmailIsUnique | boolean |
None. |
|
| Message | string |
None. |
|
| IsSuccess | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"EmailIsUnique": true,
"Message": "sample string 2",
"IsSuccess": true
}
application/xml, text/xml
Sample:
<EmailIsUniqueResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QuickSilverModel.Models"> <EmailIsUnique>true</EmailIsUnique> <IsSuccess>true</IsSuccess> <Message>sample string 2</Message> </EmailIsUniqueResponseModel>