Zpracovatelé oznámení
GET https://tistos.com/api/notification-handlers/
curl --request GET \
--url 'https://tistos.com/api/notification-handlers/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://tistos.com/api/notification-handlers/' \
--header 'Authorization: Bearer {api_key}' \
Parametry | Podrobnosti | Popis |
---|---|---|
page | Volitelné Celé číslo | Číslo stránky, ze které chcete výsledky. Výchozí hodnota je 1 . |
results_per_page | Volitelné Celé číslo | Kolik výsledků chcete na stránku. Povolené hodnoty jsou: 10 , 25 , 50 , 100 , 250 , 500 , 1000 . Výchozí hodnota je 25 . |
{ "data": [ { "id": 1, "type": "email", "name": "Work email", "settings": { "email": "[email protected]" }, "is_enabled": true, "last_datetime": null, "datetime": "2025-10-16 11:10:28", } ], "meta": { "page": 1, "results_per_page": 25, "total": 1, "total_pages": 1 }, "links": { "first": "https://tistos.com/api/notification-handlers?page=1", "last": "https://tistos.com/api/notification-handlers?page=1", "next": null, "prev": null, "self": "https://tistos.com/api/notification-handlers?page=1" } }
GET https://tistos.com/api/notification-handlers/{notification_handler_id}
curl --request GET \
--url 'https://tistos.com/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://tistos.com/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \
{ "data": { "id": 1, "type": "email", "name": "Work email", "settings": { "email": "[email protected]" }, "is_enabled": true, "last_datetime": null, "datetime": "2025-10-16 11:10:28", } }
POST https://tistos.com/api/notification-handlers
Parametry | Podrobnosti | Popis |
---|---|---|
name | Požadováno Řetězec | - |
type | Požadováno Řetězec | Povolené hodnoty: email , webhook , slack , discord , telegram , microsoft_teams |
Volitelné Řetězec | Dostupné, když: type = email E-mail | |
webhook | Volitelné Řetězec | Dostupné, když: type = webhook URL webhook |
slack | Volitelné Řetězec | Dostupné, když: type = slack Slack webhook URL |
discord | Volitelné Řetězec | Dostupné, když: type = discord Discord webhook URL |
telegram | Volitelné Řetězec | Dostupné, když: type = telegram Telegram API token |
telegram_chat_id | Volitelné Řetězec | Dostupné, když: type = telegram ID chatu Telegram |
microsoft_teams | Volitelné Řetězec | Dostupné, když: type = microsoft_teams Microsoft Teams webhook URL |
curl --request POST \
--url 'https://tistos.com/api/notification-handlers' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Example' \
--form 'type=email' \
--form 'email=[email protected]' \
--url 'https://tistos.com/api/notification-handlers' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Example' \
--form 'type=email' \
--form 'email=[email protected]' \
{ "data": { "id": 1 } }
POST https://tistos.com/api/notification-handlers/{notification_handler_id}
Parametry | Podrobnosti | Popis |
---|---|---|
name | Volitelné Řetězec | - |
type | Volitelné Řetězec | Povolené hodnoty: email , webhook , slack , discord , telegram , microsoft_teams |
Volitelné Řetězec | Dostupné, když: type = email E-mail | |
webhook | Volitelné Řetězec | Dostupné, když: type = webhook URL webhook |
slack | Volitelné Řetězec | Dostupné, když: type = slack Slack webhook URL |
discord | Volitelné Řetězec | Dostupné, když: type = discord Discord webhook URL |
telegram | Volitelné Řetězec | Dostupné, když: type = telegram Telegram API token |
telegram_chat_id | Volitelné Řetězec | Dostupné, když: type = telegram ID chatu Telegram |
microsoft_teams | Volitelné Řetězec | Dostupné, když: type = microsoft_teams Microsoft Teams webhook URL |
is_enabled | Volitelné Boolean | - |
curl --request POST \
--url 'https://tistos.com/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Example new name' \
--form 'is_enabled=1' \
--url 'https://tistos.com/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Example new name' \
--form 'is_enabled=1' \
{ "data": { "id": 1 } }
DELETE https://tistos.com/api/notification-handlers/{notification_handler_id}
curl --request DELETE \
--url 'https://tistos.com/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://tistos.com/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \