payment capture


Capture a payment.

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

Payload:

  1. channelid - the channelid assigned at successful channel authentication response
  2. clientrefcode - merchant-generated order reference or tracking number
  3. captureurl - the "linksCaptureHref" returned in payment authorization response
  4. amount - the order amount to be captured for payment
Test/Usage:
  1. Note that, the platform does not require you to send request header information
  2. https://koroma.co.za/v1/transact

 https://koroma.co.za/v1/transact
JSON Request { "channelid": "", "clientrefcode": "", "captureurl": "", "amount": "" } JSON Response { "serviceid": "...", "clientReferenceCode": "", "captureId": "", "reconciliationId": "", "selfMethod": "", "selfHref": "", "voidCaptureMethod": "", "voidCaptureHref": "", "captureAmount": "", "captureCurrency": "", "captureStatus": "", "SubmitTimeUtc": "", "errorInfoReason": "", "errorInfoMessage": "" }
Back to top