v1

latestOpenAPI 3.0.12026-07-2679100267.2 KB
Charge

Submit customer card OTP

Use this endpoint to submit the payment OTP sent to the customer's phones from the payment gateway

post/v1/checkout/checkout-card-otp

Request body

otpstring required

otp send to the customer's mobile phone

orderReferencestring required

order reference

transactionIdstring required

transaction id returend when the card details were submitted

Example request

{
  "otp": "1234",
  "orderReference": "c4307d58-2513-41d8-b7f7-dfecd5f9fdbe",
  "transactionId": "c4307d58-2513-41d8-b7f7-dfecd5f9fdbe"
}

Response

OK - your request was successful.

codestring required

Response Code

descriptionstring required

Response description

Example response

{
  "code": "00",
  "description": "Success",
  "data": {
    "message": "success"
  }
}