POST api/Payment/PaymentCardVerficationTest
Request Information
URI Parameters
None.
Body Parameters
PaymentCardInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| PaymentStatusId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"PaymentStatusId": 1
}
application/xml, text/xml
Sample:
<PaymentCardInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PaymentEncryptionDecryption.Controllers"> <PaymentStatusId>1</PaymentStatusId> </PaymentCardInfo>
application/x-www-form-urlencoded
Sample:
Sample not available.
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>