Manipuladores de notificação

GET https://uptime4.com/api/notification-handlers/
curl --request GET \
--url 'https://uptime4.com/api/notification-handlers/' \
--header 'Authorization: Bearer {api_key}' \
Parâmetros Detalhes Descrição
page Opcional Inteiro O número da página da qual você deseja resultados. O padrão é 1.
results_per_page Opcional Inteiro Quantos resultados você deseja por página. Os valores permitidos são: 10 , 25 , 50 , 100 , 250 , 500 , 1000. O padrão é 25.
{ "data": [ { "id": 1, "type": "email", "name": "Work email", "settings": { "email": "hey@example.com" }, "is_enabled": true, "last_datetime": null, "datetime": "2021-06-27 22:16:23" } ], "meta": { "page": 1, "results_per_page": 25, "total": 1, "total_pages": 1 }, "links": { "first": "https://uptime4.com/api/notification-handlers?&page=1", "last": "https://uptime4.com/api/notification-handlers?&page=1", "next": null, "prev": null, "self": "https://uptime4.com/api/notification-handlers?&page=1" } }
GET https://uptime4.com/api/notification-handlers/{notification_handler_id}
curl --request GET \
--url 'https://uptime4.com/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \
{ "data": { "id": 1, "type": "email", "name": "Work email", "settings": { "email": "hey@example.com" }, "is_enabled": true, "last_datetime": null, "datetime": "2021-06-27 22:16:23" } }
POST https://uptime4.com/api/notification-handlers
Parâmetros Detalhes Descrição
name Obrigatório String -
type Obrigatório String Valores permitidos: email , webhook , slack , discord , telegram , microsoft_teams , twilio , twilio_call , whatsapp , x , push_subscriber_id
email Opcional String Available when: type = email E-mail
webhook Opcional String Available when: type = webhook URL do webhook
slack Opcional String Available when: type = slack URL do webhook do Slack
discord Opcional String Available when: type = discord URL do webhook do Discord
telegram Opcional String Available when: type = telegram Token da API do Telegram
telegram_chat_id Opcional String Available when: type = telegram ID do bate-papo do telegrama
x_consumer_key Opcional String Available when: type = x Token da API do Telegram
x_consumer_secret Opcional String Available when: type = x Token da API do Telegram
x_access_token Opcional String Available when: type = x Token da API do Telegram
x_access_token_secret Opcional String Available when: type = x Token da API do Telegram
twilio Opcional String Available when: type = twilio Número de telefone
twilio_call Opcional String Available when: type = twilio_call Número de telefone
whatsapp Opcional String Available when: type = whatsapp Número de telefone
curl --request POST \
--url 'https://uptime4.com/api/notification-handlers' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Example' \
--form 'type=email' \
--form 'email=hello@example.com' \
{ "data": { "id": 1 } }
POST https://uptime4.com/api/notification-handlers/{notification_handler_id}
Parâmetros Detalhes Descrição
name Opcional String -
type Opcional String Valores permitidos: email , webhook , slack , discord , telegram , microsoft_teams , twilio , twilio_call , whatsapp , x , push_subscriber_id
email Opcional String Available when: type = email E-mail
webhook Opcional String Available when: type = webhook URL do webhook
slack Opcional String Available when: type = slack URL do webhook do Slack
discord Opcional String Available when: type = discord URL do webhook do Discord
telegram Opcional String Available when: type = telegram Token da API do Telegram
telegram_chat_id Opcional String Available when: type = telegram ID do bate-papo do telegrama
x_consumer_key Opcional String Available when: type = x Token da API do Telegram
x_consumer_secret Opcional String Available when: type = x Token da API do Telegram
x_access_token Opcional String Available when: type = x Token da API do Telegram
x_access_token_secret Opcional String Available when: type = x Token da API do Telegram
twilio Opcional String Available when: type = twilio Número de telefone
twilio_call Opcional String Available when: type = twilio_call Número de telefone
whatsapp Opcional String Available when: type = whatsapp Número de telefone
is_enabled Opcional Booleano -
curl --request POST \
--url 'https://uptime4.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://uptime4.com/api/notification-handlers/{notification_handler_id}
curl --request DELETE \
--url 'https://uptime4.com/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \