POST api/mobile/ChangePassword
Request Information
URI Parameters
None.
Body Parameters
ChangePassword| Name | Description | Type | Additional information |
|---|---|---|---|
| user_id | string |
None. |
|
| new_password | string |
None. |
|
| otp | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"user_id": "sample string 1",
"new_password": "sample string 2",
"otp": "sample string 3"
}
application/xml, text/xml
Sample:
<ChangePassword xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SB_Mobile_OrangePay.Models"> <new_password>sample string 2</new_password> <otp>sample string 3</otp> <user_id>sample string 1</user_id> </ChangePassword>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ForgetPasswordResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| status_code | string |
None. |
|
| status_message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"status_code": "sample string 1",
"status_message": "sample string 2"
}
application/xml, text/xml
Sample:
<ForgetPasswordResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SB_Mobile_OrangePay.Models"> <status_code>sample string 1</status_code> <status_message>sample string 2</status_message> </ForgetPasswordResponse>