POST Rocket/Reversa
Request Information
URI Parameters
None.
Body Parameters
ReversePaymentRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| PurchaseID | integer |
None. |
|
| TransactionID | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"PurchaseID": 1,
"TransactionID": "f999493a-1de8-492e-84db-03afe5e6733e"
}
application/xml, text/xml
Sample:
<ReversePaymentRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/YoVendoRecargaAPI.WebAPI.Models"> <PurchaseID>1</PurchaseID> <TransactionID>f999493a-1de8-492e-84db-03afe5e6733e</TransactionID> </ReversePaymentRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
PaymentDetailsResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| PurchaseID | integer |
None. |
|
| Amount | string |
None. |
|
| CreditNumber | string |
None. |
|
| VoucheID | string |
None. |
|
| date | string |
None. |
|
| TransactionID | string |
None. |
|
| Reference | string |
None. |
|
| ResponseCode | integer |
None. |
|
| Status | integer |
None. |
|
| IdentificationNumber | string |
None. |
|
| ISOServerDate | string |
None. |
|
| Description | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"PurchaseID": 1,
"Amount": "sample string 2",
"CreditNumber": "sample string 3",
"VoucheID": "sample string 4",
"date": "sample string 5",
"TransactionID": "sample string 6",
"Reference": "sample string 7",
"ResponseCode": 8,
"Status": 9,
"IdentificationNumber": "sample string 10",
"ISOServerDate": "sample string 11",
"Description": "sample string 12"
}
application/xml, text/xml
Sample:
<PaymentDetailsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/YoVendoRecargaAPI.WebAPI.Models"> <Amount>sample string 2</Amount> <CreditNumber>sample string 3</CreditNumber> <Description>sample string 12</Description> <ISOServerDate>sample string 11</ISOServerDate> <IdentificationNumber>sample string 10</IdentificationNumber> <PurchaseID>1</PurchaseID> <Reference>sample string 7</Reference> <ResponseCode>8</ResponseCode> <Status>9</Status> <TransactionID>sample string 6</TransactionID> <VoucheID>sample string 4</VoucheID> <date>sample string 5</date> </PaymentDetailsResponse>