Skip to content

Delete Webhook DELETE

Permanently delete a webhook. This action cannot be undone.

Endpoint

DELETE https://api.pocketalert.app/v1/webhooks/{tid}

Authentication

Required

Include one of these headers in your request:

  • Token: <your-api-key> — Get it from API Keys
  • Authorization: Bearer <jwt-token> — From Login

Request

Path Parameters

ParameterTypeRequiredDescription
tidstringWebhook unique identifier

Headers

HeaderRequiredDescription
TokenYour API key
AuthorizationBearer <jwt-token>

Example Request

bash
curl -X DELETE "https://api.pocketalert.app/v1/webhooks/kblf7mh9j8jjyeh4fx" \
  -H "Token: your-api-key"
javascript
const tid = 'kblf7mh9j8jjyeh4fx';
await fetch(`https://api.pocketalert.app/v1/webhooks/${tid}`, {
  method: 'DELETE',
  headers: { 'Token': 'your-api-key' }
});
python
import requests

tid = 'kblf7mh9j8jjyeh4fx'
response = requests.delete(
    f'https://api.pocketalert.app/v1/webhooks/{tid}',
    headers={'Token': 'your-api-key'}
)
php
$tid = 'kblf7mh9j8jjyeh4fx';
$response = Http::withHeaders([
    'Token' => 'your-api-key',
])->delete('https://api.pocketalert.app/v1/webhooks/'.$tid);

return $response->json();

Response

Success Response

200 OK

Webhook deleted successfully

json
{
  "data": "success"
}

Error Responses

StatusDescription
401Unauthorized — Invalid or missing token
404Not Found — Webhook does not exist

Pocket Alert Documentation