Skip to content

Remove pending transactions

shell
POST: {{endpoint}}/v1/transaction/pending/delete

Headers

KeyTypeValueDescription
x-api-keystringkey_xxxxxxxxxxxxxxxxxxxxAPI Key string
x-signaturestringSHA256The HMAC SHA256 signature.
x-timestampstring1730998051892Timestamp of the request

Request Parameters

KeyTypeDescription
idstringThe id of the transaction (required)

Example Request

JSON
// Body: raw (json)
{
  "id": "67110d70da538076bba8xxxx"
}

Response Parameters

The final response in the stream also includes additional data about the generation:

  • id: the id of the transaction
  • status: the status of the request API
Example Response
json
{
  "data": {
    "id": "67110d70da538076bba8xxxx",
    "status": true
  }
}
json
{
  "error": "Error message"
}
json
{
  "error": "Forbidden"
}