GET api/Account/users?username={username}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| username |
string |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
VerifyUserNameModel| Name | Description | Type | Additional information |
|---|---|---|---|
| exist |
boolean |
boolean |
None. |
| loginUrl |
string |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"exist": true,
"loginUrl": "sample string 2"
}
application/xml, text/xml
Sample:
<VerifyUserNameModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CCIntegration.Models"> <exist>true</exist> <loginUrl>sample string 2</loginUrl> </VerifyUserNameModel>