Skip to main content

Delete addresses from a webhook

POST 

https://api.fuse.io/api/v0/notifications/webhook/delete-addresses

Remove addresses from a webhook's listening scope.

Request

Query Parameters

    apiKey stringrequired

    The public API key for authentication.

Header Parameters

    API-SECRET stringrequired

    The secret API key for authentication.

Body

required
    webhookId string
    addresses string[]

Responses

Addresses successfully deleted from the webhook.

Schema
    message string
curl -L -X POST 'https://api.fuse.io/api/v0/notifications/webhook/delete-addresses' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"webhookId": "string",
"addresses": [
"string"
]
}'
Request Collapse all
Base URL
https://api.fuse.io/api/v0/notifications
Parameters
— queryrequired
— headerrequired
Body required
{
  "webhookId": "string",
  "addresses": [
    "string"
  ]
}
ResponseClear

Click the Send API Request button above and see the response here!

Was this page helpful?