Skip to main content
POST
/
webhook
/
delete-addresses
Delete addresses from a webhook
curl --request POST \
  --url https://api.fuse.io/api/v0/notifications/webhook/delete-addresses \
  --header 'API-SECRET: <api-secret>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "webhookId": "<string>",
  "addresses": [
    "<string>"
  ]
}
'
{
  "message": "Addresses deleted successfully."
}

Documentation Index

Fetch the complete documentation index at: https://docs.fuse.io/llms.txt

Use this file to discover all available pages before exploring further.

Headers

API-SECRET
string
required

The secret API key for authentication.

Query Parameters

apiKey
string
required

The public API key for authentication.

Body

application/json
webhookId
string
addresses
string[]

Response

Addresses successfully deleted from the webhook.

message
string
Example:

"Addresses deleted successfully."