Skip to main content
POST
/
api
/
v3
/
transactions
/
{uuid}
/
resume
Resume a transaction in the ACH application ( STABLE )
curl --request POST \
  --url https://api.grailpay.com/api/v3/transactions/{uuid}/resume \
  --header 'Authorization: Bearer <token>'
{
  "status": true,
  "message": "The pause has been removed from this transaction and it will now process normally.",
  "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 resume.

Example:

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

Response

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

status
boolean
Example:

true

message
string
Example:

"The pause has been removed from this transaction and it will now process normally."

data
object
Example:

null

errors
object
Example:

null

request_id
string<uuid>
Example:

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