Delete a webhook subscription.
Detaches one subscriber from the webhook; the webhook itself and any other subscribers are untouched. The subscriber stops receiving events on the next inbound delivery. To remove the webhook entirely, use `DELETE WebhookItem` instead.
Authorization
Bearer JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.
In: header
Path Parameters
The subscription ID to delete.
uuidThe tenant identifier
Response Body
curl -X DELETE "https://api.fruxon.com/v1/tenants/string/webhooks/string/subscriptions/497f6eca-6276-4993-bfeb-53cbbbba6f08"{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string",
"property1": null,
"property2": null
}List subscriptions for a given webhook.
Returns every subscriber currently attached to the webhook, with subscriber type, target ID, and event filter. Use this to audit what will fire when the inbound URL is hit.
Create a subscription linking a subscriber (asset, connector, agent) to a webhook.
Wires a subscriber to events arriving on this webhook — once created, every inbound delivery for the webhook is fanned out to the subscriber (e.g. firing an agent trigger). Multiple subscribers can share a webhook; the request body says which subscriber kind and which event filter to apply. Detach via `DELETE WebhookSubscriptionItem`.