Skip to main content
POST
/
refund-reversal
Query Refund Reversal
curl --request POST \
  --url https://sandbox.waftpay.io/api/refund-reversal \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "request_uuid": "A333RTYUT"
}
'
{
"code": 102,
"status": "SUCCESS",
"description": "Transaction success",
"data": {}
}
Use the refund/reversal status endpoint and provide the request_uuid you received when the refund/reversal was created.
{
  "request_uuid": "A333RTYUT"
}
See Refund/Reversal Status for full details and response examples.

Authorizations

Authorization
string
header
required

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

Body

application/json
request_uuid
string
required

Refund/reversal request UUID returned when the refund/reversal was created.

Example:

"A333RTYUT"

Response

Refund reversal status payload

code
integer
required

Application code for the query result (e.g., 102=SUCCESS, 103=FAILED, 401/404 represented in body where applicable).

status
string
required

Outcome label (e.g., SUCCESS, FAILED, FAILED AUTHORIZATION, NOT FOUND).

description
string
required

Human-readable description of the outcome.

results
object
required

Provider/platform response fields for a refund reversal query. Fields are optional and may vary by provider.