latestOpenAPI 3.0.32026-08-224982,0272.8 MB

e445c15e5bee

Webhook

Remove wallet webhook

Removing a webhook will cause new events of the specified type to no longer trigger HTTP callbacks to your URLs

delete/api/v2/{coin}/wallet/{walletId}/webhooks

Path parameters

coinstring required

A cryptocurrency or token ticker symbol.

Example:btc
walletIdstring required
Example:59cd72485007a239fb00282ed480da1f

The wallet ID.

Request body

type'txRequest' | 'txRequestTransaction' | 'transfer' | 'transaction' | 'transactionRemoved' | 'transactionExpire' | 'unspentExpiry' | 'pendingapproval' | 'address_confirmation' | 'lowFee' | 'block' | 'admin' | 'circuitBreaker' | 'transaction_finality_on_l1' | 'lowFeeAddressBalance' | 'stuckTx' | 'endInvestorOnboardingInvite' | 'endInvestorOnboardingAccepted'

Event type to listen to.

urlstring uri
idstring

Example request

{
  "type": "transfer",
  "url": "https://your.server.com/user_webhook",
  "id": "59cd72485007a239fb00282ed480da1f"
}

Response

OK

removedinteger

Number of wallet webhooks removed.

Example response

{
  "removed": 1
}