POST API/Account/PINUpdate
Request Information
URI Parameters
None.
Body Parameters
PINUpdateRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| AccountID | integer |
None. |
|
| MobileNumber | string |
None. |
|
| PIN | string |
None. |
|
| PINOld | string |
None. |
|
| Signature | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"AccountID": 1,
"MobileNumber": "sample string 2",
"PIN": "sample string 3",
"PINOld": "sample string 4",
"Signature": "sample string 5"
}
application/xml, text/xml
Sample:
<PINUpdateRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Pis.Apay.Mobile.Api.Models"> <AccountID>1</AccountID> <MobileNumber>sample string 2</MobileNumber> <PIN>sample string 3</PIN> <PINOld>sample string 4</PINOld> <Signature>sample string 5</Signature> </PINUpdateRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ResponseObject| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | string |
None. |
|
| ListValue | Collection of Object |
None. |
|
| Message | string |
None. |
|
| Time | string |
None. |
|
| Value | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Code": "sample string 1",
"ListValue": [
{},
{}
],
"Message": "sample string 2",
"Time": "sample string 3",
"Value": {}
}
application/xml, text/xml
Sample:
<ResponseObject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Pis.Admin.Lib">
<Code>sample string 1</Code>
<ListValue xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:anyType />
<d2p1:anyType />
</ListValue>
<Message>sample string 2</Message>
<Time>sample string 3</Time>
<Value />
</ResponseObject>