POST api/Payment/PaymentVoidMarking

Request Information

URI Parameters

None.

Body Parameters

PaymentVoid
NameDescriptionTypeAdditional information
apiKey

string

None.

subclientcode

integer

None.

orderID

string

None.

transactionIP

string

None.

Request Formats

application/json, text/json

Sample:
{
  "apiKey": "sample string 1",
  "subclientcode": 1,
  "orderID": "sample string 2",
  "transactionIP": "sample string 3"
}

application/xml, text/xml

Sample:
<PaymentVoid xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PaymentEncryptionDecryption.Controllers">
  <apiKey>sample string 1</apiKey>
  <orderID>sample string 2</orderID>
  <subclientcode>1</subclientcode>
  <transactionIP>sample string 3</transactionIP>
</PaymentVoid>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

PaymentCardInfoResponse
NameDescriptionTypeAdditional 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>