Skip to main content
POST
/
api
/
v3
/
onramp
/
crypto
Retry Multiple Failed Refunds
curl --request POST \
  --url https://sandbox-api.kotanipay.io/api/v3/onramp/crypto \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "referenceIds": [
    "fredrick-ndegwa-1",
    "john-doe-2"
  ]
}
'
{
  "success": false,
  "message": "Invalid request",
  "data": {}
}
This endpoint will send token to any crypto wallet address specified.

Authorizations

Authorization
string
header
required

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

Body

application/json
referenceIds
string[]
required

Array of offramp transaction reference IDs to retry

Example:
["fredrick-ndegwa-1", "john-doe-2"]

Response

success
boolean
Example:

false

message
string
Example:

"Invalid request"

data
object
Example:
{}