POST api/Authentication/ActivateAccount
Activate account (registered user)
Request Information
URI Parameters
None.
Body Parameters
RegisteredUserPin| Name | Description | Type | Additional information |
|---|---|---|---|
| UserID | integer |
None. |
|
| Mobile | string |
None. |
|
| string |
None. |
||
| OneTimePin | string |
None. |
|
| ExistingUser | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserID": 1,
"Mobile": "sample string 2",
"Email": "sample string 3",
"OneTimePin": "sample string 4",
"ExistingUser": true
}
application/xml, text/xml
Sample:
<RegisteredUserPin xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/XPH.Entities.Core"> <Email>sample string 3</Email> <ExistingUser>true</ExistingUser> <Mobile>sample string 2</Mobile> <OneTimePin>sample string 4</OneTimePin> <UserID>1</UserID> </RegisteredUserPin>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
JsonResultOfString| Name | Description | Type | Additional information |
|---|---|---|---|
| Content | string |
None. |
|
| SerializerSettings | JsonSerializerSettings |
None. |
|
| Encoding | Encoding |
None. |
|
| Request | HttpRequestMessage |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.