Skip to main content
POST
/
api
/
v3
/
transactions
/
{uuid}
/
pause
Pause a transaction in the ACH application ( STABLE )
curl --request POST \
  --url https://api.grailpay.com/api/v3/transactions/{uuid}/pause \
  --header 'Authorization: Bearer <token>'
{
  "status": true,
  "message": "This transaction has been successfully paused.",
  "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 pause.

Example:

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

Response

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

status
boolean
Example:

true

message
string
Example:

"This transaction has been successfully paused."

data
object
Example:

null

errors
object
Example:

null

request_id
string<uuid>
Example:

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