Skip to content
Prepaid, no subscription trap. Top up a balance and we draw the monthly fee from it.
tcggraph

Delete a webhook

Stop deliveries and remove the endpoint.

DELETEhttps://api.tcggraph.com/v1/webhooks/{id}No credits · metering

Immediate. Deliveries still queued for the endpoint are dropped.

Path parameters

ParameterTypeDescription
idrequiredstringThe endpoint's id.

Response

200 Confirmation.

FieldTypeDescription
dataobjectWhat was deleted.
data.idstringThe endpoint's id.
data.deletedbooleanAlways true.

Examples

Real responses from the production API, recorded on 2026-09-24 by the script that also checks every field above against them. Arrays are shown in full.

Delete it

curl -X DELETE "https://api.tcggraph.com/v1/webhooks/c3290649-ffc6-467c-9470-c5307925ca78" \
  -H "Authorization: Bearer $TCGGRAPH_API_KEY"
200 · X-Credits-Cost: 0
{
  "data": {
    "id": "c3290649-ffc6-467c-9470-c5307925ca78",
    "deleted": true
  }
}

Errors

Every error has the same body; switch on error.code. Any endpoint can also answer 401, 402, 403 or 429 for reasons of key, plan or rate; those are on Errors.

StatusCodeWhen
404not_foundNo endpoint with that id on this account, including one already deleted.