Delete Device DELETE
Remove a device from your account. This action cannot be undone.
Endpoint
DELETE https://api.pocketalert.app/v1/devices/{tid}Authentication
Required
Include one of these headers in your request:
Request
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
tid | string | ✅ | Device unique identifier |
Headers
| Header | Required | Description |
|---|---|---|
Token | ✅ | Your API key |
Authorization | ✅ | Bearer <jwt-token> |
Example Request
bash
curl -X DELETE "https://api.pocketalert.app/v1/devices/9dc24hqldvv2bfx2nlc6r" \
-H "Token: your-api-key"javascript
const tid = '9dc24hqldvv2bfx2nlc6r';
await fetch(`https://api.pocketalert.app/v1/devices/${tid}`, {
method: 'DELETE',
headers: { 'Token': 'your-api-key' }
});python
import requests
tid = '9dc24hqldvv2bfx2nlc6r'
response = requests.delete(
f'https://api.pocketalert.app/v1/devices/{tid}',
headers={'Token': 'your-api-key'}
)php
$tid = '9dc24hqldvv2bfx2nlc6r';
$response = Http::withHeaders([
'Token' => 'your-api-key',
])->delete('https://api.pocketalert.app/v1/devices/'.$tid);
return $response->json();Response
Success Response
200 OK
Device deleted successfully
json
{
"data": "success"
}Error Responses
| Status | Description |
|---|---|
401 | Unauthorized — Invalid or missing token |
404 | Not Found — Device does not exist |
Note
After deleting a device, it will need to be re-registered through the mobile app to receive notifications again.
