authorization reversal


Process an authorization reversal

Endpoint: https://koroma.co.za/v1/transact

Payload:

  1. channelid - The channelid received at successful authentication
  2. clientrefcode - Merchant-generated order reference or tracking number
  3. reversalurl - This is the value of "linksAuthReversalHref", returned in payment authorization
  4. amount - The order amount, decimals are separated by "."
Test/Usage:
  1. Note that, the platform does not require you to send request header information
  2. Request an authorization reversal as follows:
 https://koroma.co.za/v1/transact
JSON Request { "channelid": "", "clientrefcode": "", "reversalurl": "", "amount": "", } JSON Response { "channelid": "...", "clientReferenceCode": "", "reversalId": "", "method": "", "href": "", "currency": "", "reversalAmount": "", "reversalCurrency": "", "Status": "", "SubmitTimeUtc": "", "processorResponseCode": "", "failedReason": "", "failedMessage": "", "detailsReason": "", "detailsField": "" }
Back to top