Skip to main content
POST
/
pms
/
checkout
/
card-payment
/
resend-otp
Resend OTP
curl --request POST \
  --url http://sandbox.mintlify.com/pms/checkout/card-payment/resend-otp/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: <content-type>' \
  --header 'api-key: <api-key>' \
  --header 'api-secret: <api-secret>' \
  --data '
{
  "transactionRef": "txn_12345",
  "amount": "10000"
}
'
{
  "status": true,
  "message": "<string>",
  "data": {
    "statusCode": "<string>",
    "message": "<string>",
    "data": {}
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

api-key
string
required

Your Payvessel public API key

api-secret
string
required

Bearer token with your Payvessel secret

Content-Type
enum<string>
required

Request content type

Available options:
application/json

Body

application/json
transactionRef
string
required

Transaction reference to resend OTP for

amount
string
required

Transaction amount

Response

200 - application/json

OTP resent successfully

status
boolean

Request status

message
string

Response message

data
object