GET api/Payment/getReplyObject?PaymentStatusId={PaymentStatusId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| PaymentStatusId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
PaymentCardInfoResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| isSuccess | boolean |
None. |
|
| chargingStatus | integer |
None. |
|
| message | string |
None. |
|
| descriptor | string |
None. |
|
| code | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"isSuccess": true,
"chargingStatus": 2,
"message": "sample string 3",
"descriptor": "sample string 4",
"code": "sample string 5"
}
application/xml, text/xml
Sample:
<PaymentCardInfoResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PaymentEncryptionDecryption.Controllers"> <chargingStatus>2</chargingStatus> <code>sample string 5</code> <descriptor>sample string 4</descriptor> <isSuccess>true</isSuccess> <message>sample string 3</message> </PaymentCardInfoResponse>