POST ProcessRemotePayment
Request Information
URI Parameters
None.
Body Parameters
PaymentProcess| Name | Description | Type | Additional information |
|---|---|---|---|
| ReferenceNo | string |
None. |
|
| MerchantAccountID | integer |
None. |
|
| SecureHash | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ReferenceNo": "sample string 1",
"MerchantAccountID": 2,
"SecureHash": "sample string 3"
}
application/xml, text/xml
Sample:
<PaymentProcess xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ExternalPayment"> <MerchantAccountID>2</MerchantAccountID> <ReferenceNo>sample string 1</ReferenceNo> <SecureHash>sample string 3</SecureHash> </PaymentProcess>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
doReturn| Name | Description | Type | Additional information |
|---|---|---|---|
| Flag | integer |
None. |
|
| TransactionID | string |
None. |
|
| ReferenceNo | string |
None. |
|
| ReturnText | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Flag": 1,
"TransactionID": "sample string 2",
"ReferenceNo": "sample string 3",
"ReturnText": "sample string 4"
}
application/xml, text/xml
Sample:
<doReturn xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ExternalPayment"> <Flag>1</Flag> <ReferenceNo>sample string 3</ReferenceNo> <ReturnText>sample string 4</ReturnText> <TransactionID>sample string 2</TransactionID> </doReturn>