Skip to main content
DELETE
/
api
/
v3
/
transactions
/
{uuid}
/
cancel
Cancel a transaction in the ACH application ( STABLE )
curl --request DELETE \
  --url https://api.grailpay.com/api/v3/transactions/{uuid}/cancel \
  --header 'Authorization: Bearer <token>'
{
  "status": true,
  "message": "The transaction cancellation is currently being processed.",
  "data": null,
  "errors": null,
  "request_id": "2d6a4c39-8fcf-4d80-9189-b4764eac31f2"
}

Authorizations

Authorization
string
header
required

Token-based authentication using Authorization: Bearer <YOUR_API_KEY> provided by the GrailPay Support Team.

Path Parameters

uuid
string<uuid>
required

The UUID of the transaction to cancel.

Example:

"3fa85f64-5717-4562-b3fc-2c963f66afa6"

Response

The response returned from a successful call to cancel a transaction.

status
boolean
Example:

true

message
Example:

"The transaction cancellation is currently being processed."

data
object
Example:

null

errors
object
Example:

null

request_id
string<uuid>
Example:

"2d6a4c39-8fcf-4d80-9189-b4764eac31f2"