POST UserPasswordReset
Request Information
URI Parameters
None.
Body Parameters
UserPasswordResetRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| CurrentPassword | string |
None. |
|
| Password | string |
None. |
|
| Token | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CurrentPassword": "sample string 1",
"Password": "sample string 2",
"Token": "sample string 3"
}
application/xml, text/xml
Sample:
<UserPasswordResetRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AfiswitchCIOD.Models"> <Token>sample string 3</Token> <CurrentPassword>sample string 1</CurrentPassword> <Password>sample string 2</Password> </UserPasswordResetRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Response | Response |
None. |
Response Formats
application/json, text/json
Sample:
{
"Response": {
"ResponseCode": 1,
"ResponseMessage": "sample string 2"
}
}
application/xml, text/xml
Sample:
<APIResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AfiswitchCIOD.Models">
<Response>
<ResponseCode>1</ResponseCode>
<ResponseMessage>sample string 2</ResponseMessage>
</Response>
</APIResponse>