POST api/Customer/HasSimilarLogonName
Request Information
URI Parameters
None.
Body Parameters
HasSimilarLogonNameRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Email": "sample string 1"
}
application/xml, text/xml
Sample:
<HasSimilarLogonNameRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request"> <Email>sample string 1</Email> </HasSimilarLogonNameRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HasSimilarLogonNameResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| IsValidLogonName | boolean |
None. |
|
| ExceptionMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsValidLogonName": true,
"ExceptionMessage": "sample string 2"
}
application/xml, text/xml
Sample:
<HasSimilarLogonNameResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response"> <ExceptionMessage>sample string 2</ExceptionMessage> <IsValidLogonName>true</IsValidLogonName> </HasSimilarLogonNameResponse>