Gestionnaires de notifications

GET https://uptime4.com/api/notification-handlers/
curl --request GET \
--url 'https://uptime4.com/api/notification-handlers/' \
--header 'Authorization: Bearer {api_key}' \
Paramètres Détails Description
page Facultatif Entier Le numéro de page dont vous souhaitez obtenir les résultats. La valeur par défaut est 1.
results_per_page Facultatif Entier Combien de résultats souhaitez-vous par page. Les valeurs autorisées sont : 10 , 25 , 50 , 100 , 250 , 500 , 1000. La valeur par défaut est 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
Paramètres Détails Description
name Obligatoire Chaîne -
type Obligatoire Chaîne Valeurs autorisées : email , webhook , slack , discord , telegram , microsoft_teams , twilio , twilio_call , whatsapp , x , push_subscriber_id
email Facultatif Chaîne Available when: type = email E-mail
webhook Facultatif Chaîne Available when: type = webhook URL du webhook
slack Facultatif Chaîne Available when: type = slack URL du webhook Slack
discord Facultatif Chaîne Available when: type = discord URL du webhook Discord
telegram Facultatif Chaîne Available when: type = telegram Jeton API Telegram
telegram_chat_id Facultatif Chaîne Available when: type = telegram ID de chat Telegram
x_consumer_key Facultatif Chaîne Available when: type = x Jeton API Telegram
x_consumer_secret Facultatif Chaîne Available when: type = x Jeton API Telegram
x_access_token Facultatif Chaîne Available when: type = x Jeton API Telegram
x_access_token_secret Facultatif Chaîne Available when: type = x Jeton API Telegram
twilio Facultatif Chaîne Available when: type = twilio Numéro de téléphone
twilio_call Facultatif Chaîne Available when: type = twilio_call Numéro de téléphone
whatsapp Facultatif Chaîne Available when: type = whatsapp Numéro de téléphone
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}
Paramètres Détails Description
name Facultatif Chaîne -
type Facultatif Chaîne Valeurs autorisées : email , webhook , slack , discord , telegram , microsoft_teams , twilio , twilio_call , whatsapp , x , push_subscriber_id
email Facultatif Chaîne Available when: type = email E-mail
webhook Facultatif Chaîne Available when: type = webhook URL du webhook
slack Facultatif Chaîne Available when: type = slack URL du webhook Slack
discord Facultatif Chaîne Available when: type = discord URL du webhook Discord
telegram Facultatif Chaîne Available when: type = telegram Jeton API Telegram
telegram_chat_id Facultatif Chaîne Available when: type = telegram ID de chat Telegram
x_consumer_key Facultatif Chaîne Available when: type = x Jeton API Telegram
x_consumer_secret Facultatif Chaîne Available when: type = x Jeton API Telegram
x_access_token Facultatif Chaîne Available when: type = x Jeton API Telegram
x_access_token_secret Facultatif Chaîne Available when: type = x Jeton API Telegram
twilio Facultatif Chaîne Available when: type = twilio Numéro de téléphone
twilio_call Facultatif Chaîne Available when: type = twilio_call Numéro de téléphone
whatsapp Facultatif Chaîne Available when: type = whatsapp Numéro de téléphone
is_enabled Facultatif Booléen -
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}' \