Delete channel
DELETE
/alerts/channels/{id}
Authentication
Bearer Token (hu_api_key)
Path Parameters
id
string
required
path
Responses
200
Channel deleted
No response body
curl -X DELETE 'https://happyuptime.com/api/v1/alerts/channels/string' \ -H 'Authorization: Bearer YOUR_API_TOKEN'
const response = await fetch('https://happyuptime.com/api/v1/alerts/channels/string', { method: 'DELETE', headers: { "Authorization": "Bearer YOUR_API_TOKEN" }});const data = await response.json();console.log(data);
import requestsheaders = { 'Authorization': 'Bearer YOUR_API_TOKEN'}response = requests.delete('https://happyuptime.com/api/v1/alerts/channels/string', headers=headers)print(response.json())
API Playground
Try this endpoint
DELETE
/alerts/channels/{id}