Webhooks
Delete Webhook
Remove a webhook subscription.
Delete an active webhook subscription. Events will no longer be sent to the endpoint after deletion.
DELETE https://api.figma.com/v2/webhooks/:webhook_id
Authentication
Requires a valid access token with webhooks:write scope. Pass via X-Figma-Token header (personal access token) or Authorization: Bearer header (OAuth).
Parameters
Path parameters
The ID of the webhook to delete. Retrieve webhook IDs from the Get Webhooks endpoint.
Example Request
Response
Returns 200 OK with the deleted webhook details.
{
"id": "wh_123456",
"status": "DELETED"
}
Response Fields
| Field | Type | Description |
|---|---|---|
id | string | The ID of the deleted webhook |
status | string | Always DELETED on success |