GET api/person/validateuniqueness?email={email}&mobile={mobile}&userName={userName}&brandID={brandID}&externalAdviserReference={externalAdviserReference}
Validate person email, mobile or username uniqueness.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
|
Person email |
string |
None. |
|
| mobile |
Person mobile number |
string |
None. |
| userName |
Person user name |
string |
None. |
| brandID |
BrandID |
string |
None. |
| externalAdviserReference |
External adviser reference |
string |
None. |
Body Parameters
None.
Response Information
Resource Description
ValidateUniqueness| Name | Description | Type | Additional information |
|---|---|---|---|
| boolean |
None. |
||
| Mobile | boolean |
None. |
|
| UserName | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Email": true,
"Mobile": true,
"UserName": true
}
application/xml, text/xml
Sample:
<ValidateUniqueness xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <Email>true</Email> <Mobile>true</Mobile> <UserName>true</UserName> </ValidateUniqueness>
Error Response Information
Resource Description
stringError Response Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>