Installa la nostra app 🪄 clicca sull'icona nell'angolo in alto a destra della barra degli indirizzi.

Gestori di notifiche

GET https://calisiyormu.com/api/notification-handlers/
curl --request GET \
--url 'https://calisiyormu.com/api/notification-handlers/' \
--header 'Authorization: Bearer {api_key}' \
Parametri Dettagli Descrizione
page Opzionale Intero Il numero di pagina da cui desideri i risultati. Predefinito a 1.
results_per_page Opzionale Intero Quanti risultati vuoi per pagina. I valori consentiti sono: 10 , 25 , 50 , 100 , 250 , 500 , 1000. Predefinito è 25.
{ "data": [ { "id": 1, "type": "email", "name": "Work email", "settings": { "email": "hey@example.com" }, "is_enabled": true, "last_datetime": null, "datetime": "2025-09-02 04:40:29", } ], "meta": { "page": 1, "results_per_page": 25, "total": 1, "total_pages": 1 }, "links": { "first": "https://calisiyormu.com/api/notification-handlers?page=1", "last": "https://calisiyormu.com/api/notification-handlers?page=1", "next": null, "prev": null, "self": "https://calisiyormu.com/api/notification-handlers?page=1" } }
GET https://calisiyormu.com/api/notification-handlers/{notification_handler_id}
curl --request GET \
--url 'https://calisiyormu.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": "2025-09-02 04:40:29", } }
POST https://calisiyormu.com/api/notification-handlers
Parametri Dettagli Descrizione
name Richiesto Stringa -
type Richiesto Stringa Valori consentiti: email , webhook , slack , discord , telegram , microsoft_teams , twilio , twilio_call , whatsapp , x , push_subscriber_id
email Opzionale Stringa Disponibile quando: type = email Email
webhook Opzionale Stringa Disponibile quando: type = webhook Webhook URL
slack Opzionale Stringa Disponibile quando: type = slack Slack webhook URL
discord Opzionale Stringa Disponibile quando: type = discord Discord webhook URL
telegram Opzionale Stringa Disponibile quando: type = telegram Telegram API Token
telegram_chat_id Opzionale Stringa Disponibile quando: type = telegram Telegram Chat ID
microsoft_teams Opzionale Stringa Disponibile quando: type = microsoft_teams Microsoft Teams webhook URL
x_consumer_key Opzionale Stringa Disponibile quando: type = x Telegram API Token
x_consumer_secret Opzionale Stringa Disponibile quando: type = x Telegram API Token
x_access_token Opzionale Stringa Disponibile quando: type = x Telegram API Token
x_access_token_secret Opzionale Stringa Disponibile quando: type = x Telegram API Token
push_subscriber_id Opzionale Stringa Disponibile quando: type = push_subscriber_id Push subscriber
twilio Opzionale Stringa Disponibile quando: type = twilio Phone number
twilio_call Opzionale Stringa Disponibile quando: type = twilio_call Phone number
whatsapp Opzionale Stringa Disponibile quando: type = whatsapp Phone number
curl --request POST \
--url 'https://calisiyormu.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://calisiyormu.com/api/notification-handlers/{notification_handler_id}
Parametri Dettagli Descrizione
name Opzionale Stringa -
type Opzionale Stringa Valori consentiti: email , webhook , slack , discord , telegram , microsoft_teams , twilio , twilio_call , whatsapp , x , push_subscriber_id
email Opzionale Stringa Disponibile quando: type = email Email
webhook Opzionale Stringa Disponibile quando: type = webhook Webhook URL
slack Opzionale Stringa Disponibile quando: type = slack Slack webhook URL
discord Opzionale Stringa Disponibile quando: type = discord Discord webhook URL
telegram Opzionale Stringa Disponibile quando: type = telegram Telegram API Token
telegram_chat_id Opzionale Stringa Disponibile quando: type = telegram Telegram Chat ID
microsoft_teams Opzionale Stringa Disponibile quando: type = microsoft_teams Microsoft Teams webhook URL
x_consumer_key Opzionale Stringa Disponibile quando: type = x Telegram API Token
x_consumer_secret Opzionale Stringa Disponibile quando: type = x Telegram API Token
x_access_token Opzionale Stringa Disponibile quando: type = x Telegram API Token
x_access_token_secret Opzionale Stringa Disponibile quando: type = x Telegram API Token
push_subscriber_id Opzionale Stringa Disponibile quando: type = push_subscriber_id Push subscriber
twilio Opzionale Stringa Disponibile quando: type = twilio Phone number
twilio_call Opzionale Stringa Disponibile quando: type = twilio_call Phone number
whatsapp Opzionale Stringa Disponibile quando: type = whatsapp Phone number
is_enabled Opzionale Boolean -
curl --request POST \
--url 'https://calisiyormu.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://calisiyormu.com/api/notification-handlers/{notification_handler_id}
curl --request DELETE \
--url 'https://calisiyormu.com/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \