DELETE
/
transactions
/
{id}
curl --request DELETE \
  --url https://api.coinfi.zone/transactions/{id} \
  --header 'Authorization: Bearer <token>'
This response has no body data.

This endpoint cancels a pending transaction by providing its ID. Use it to cancel a transaction that has not yet been fully processed on the blockchain.

Request Details

  • URL: https://api.coinfi.zone/transactions/{id}
  • Method: DELETE
  • Path Parameter: id – the unique identifier of the transaction to cancel.

Example Request

curl -X DELETE "https://api.coinfi.zone/transactions/12345" -H "Accept: application/json"

Replace 12345 with the actual transaction ID you wish to cancel.

Authorizations

Authorization
string
header
required

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

Path Parameters

id
integer
required

ID of the transaction to cancel.

Was this page helpful?