Skip to main content
DELETE
/
api
/
v2
/
webhooks
/
{id}
Delete webhook (V2)
curl --request DELETE \
  --url https://api.telemax.com.au/api/v2/webhooks/{id} \
  --header 'Authorization: Bearer <token>'
{}

Overview

Soft-deletes a webhook. Deliveries stop immediately. The webhook will no longer appear in list responses.
Rate limit: 20 requests per 60 seconds per token.

Endpoint

DELETE /api/v2/webhooks/{id}

Path parameters

id
integer
required
Webhook ID.

Response

200 OK — empty body on success.

Error responses

StatusMeaning
401Missing or invalid token
403Webhook does not belong to the caller’s company
404Webhook not found
curl -X DELETE "https://api.telemax.com.au/api/v2/webhooks/7" \
  -H "Authorization: Bearer <token>"

Authorizations

Authorization
string
header
required

JWT Bearer token obtained from POST /api/v2/authentication/token/api-key.

Lifetime: ~24 hours (86,399 seconds). Cache the token and reuse it. Re-authenticate 5 minutes before expiry.

Scoping: API key tokens are scoped to the company the key belongs to and may restrict access to a vehicle allowlist and/or action set (see token claims).

No refresh endpoint — re-authenticate with your API key when the token expires.

Path Parameters

id
integer
required

Response

200 OK — Empty body. Webhook deleted successfully.