v3

latestOpenAPI 3.0.02026-07-311784111.3 MB
Wallet
Private

Cancel a pending transfer by its ID. This method allows you to cancel a transfer that has not yet been processed. Once a transfer is processed, it cannot be cancelled.

📖 Related Article: Managing Transfers

Scope: wallet:read_write

Try in API console

get/private/cancel_transfer_by_id

Query parameters

currency'BTC' | 'ETH' | 'USDC' | 'USDT' | 'EURR' required

Currency, i.e "BTC", "ETH", "USDC"

The currency symbol

idinteger required

Id of transfer

Example:12

Id of transfer

Response

Success response

jsonrpc'2.0' required

The JSON-RPC version (2.0)

idinteger

The id that was sent in the request

Example response

{
  "result": {
    "id": 12,
    "created_timestamp": 1536569522277,
    "amount": 1,
    "other_side": "Smith",
    "updated_timestamp": 1536569522277
  }
}