latestOpenAPI 3.0.32026-08-224982,0272.8 MB
e445c15e5bee
Webhook
List wallet webhooks
List webhooks set up on the wallet. Currently, the types of webhooks that can be attached to a wallet are transfer, pendingapproval, and address_confirmation notifications.
get/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.
Response
OK
Example response
{
"webhooks": [
{
"id": "59cd72485007a239fb00282ed480da1f",
"label": "Test Webhook",
"coin": "btc",
"type": "transfer",
"url": "https://your.server.com/webhook",
"version": 2,
"numConfirmations": 6,
"state": "active",
"walletId": "59cd72485007a239fb00282ed480da1f"
}
]
}