Benachrichtigungs-Handler
GET https://digily.link/api/notification-handlers/
curl --request GET \
--url 'https://digily.link/api/notification-handlers/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://digily.link/api/notification-handlers/' \
--header 'Authorization: Bearer {api_key}' \
Parameter | Einzelheiten | Beschreibung |
---|---|---|
page | Optional Ganzzahl | Die Seitennummer, von der Sie Ergebnisse wünschen. Standardmäßig 1 . |
results_per_page | Optional Ganzzahl | Wie viele Ergebnisse möchten Sie pro Seite? Erlaubte Werte sind: 10 , 25 , 50 , 100 , 250 , 500 , 1000 . Standardmäßig 25 . |
{ "data": [ { "id": 1, "type": "email", "name": "Work email", "settings": { "email": "hey@example.com" }, "is_enabled": true, "last_datetime": null, "datetime": "2025-09-14 12:01:40", } ], "meta": { "page": 1, "results_per_page": 25, "total": 1, "total_pages": 1 }, "links": { "first": "https://digily.link/api/notification-handlers?page=1", "last": "https://digily.link/api/notification-handlers?page=1", "next": null, "prev": null, "self": "https://digily.link/api/notification-handlers?page=1" } }
GET https://digily.link/api/notification-handlers/{notification_handler_id}
curl --request GET \
--url 'https://digily.link/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://digily.link/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-14 12:01:40", } }
POST https://digily.link/api/notification-handlers
Parameter | Einzelheiten | Beschreibung |
---|---|---|
name | Erforderlich Zeichenkette | - |
type | Erforderlich Zeichenkette | Zulässige Werte: email , webhook , slack , discord , telegram , microsoft_teams , internal_notification , push_subscriber_id |
Optional Zeichenkette | Verfügbar, wenn: type = email E-Mail | |
webhook | Optional Zeichenkette | Verfügbar, wenn: type = webhook Webhook-URL |
slack | Optional Zeichenkette | Verfügbar, wenn: type = slack Slack-Webhook-URL |
discord | Optional Zeichenkette | Verfügbar, wenn: type = discord Discord-Webhook-URL |
telegram | Optional Zeichenkette | Verfügbar, wenn: type = telegram Telegram-API-Token |
telegram_chat_id | Optional Zeichenkette | Verfügbar, wenn: type = telegram Telegram-Chat-ID |
microsoft_teams | Optional Zeichenkette | Verfügbar, wenn: type = microsoft_teams Microsoft Teams-Webhook-URL |
push_subscriber_id | Optional Zeichenkette | Verfügbar, wenn: type = push_subscriber_id Push-Abonnent |
curl --request POST \
--url 'https://digily.link/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' \
--url 'https://digily.link/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://digily.link/api/notification-handlers/{notification_handler_id}
Parameter | Einzelheiten | Beschreibung |
---|---|---|
name | Optional Zeichenkette | - |
type | Optional Zeichenkette | Zulässige Werte: email , webhook , slack , discord , telegram , microsoft_teams , internal_notification , push_subscriber_id |
Optional Zeichenkette | Verfügbar, wenn: type = email E-Mail | |
webhook | Optional Zeichenkette | Verfügbar, wenn: type = webhook Webhook-URL |
slack | Optional Zeichenkette | Verfügbar, wenn: type = slack Slack-Webhook-URL |
discord | Optional Zeichenkette | Verfügbar, wenn: type = discord Discord-Webhook-URL |
telegram | Optional Zeichenkette | Verfügbar, wenn: type = telegram Telegram-API-Token |
telegram_chat_id | Optional Zeichenkette | Verfügbar, wenn: type = telegram Telegram-Chat-ID |
microsoft_teams | Optional Zeichenkette | Verfügbar, wenn: type = microsoft_teams Microsoft Teams-Webhook-URL |
push_subscriber_id | Optional Zeichenkette | Verfügbar, wenn: type = push_subscriber_id Push-Abonnent |
is_enabled | Optional Boolesch | - |
curl --request POST \
--url 'https://digily.link/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://digily.link/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://digily.link/api/notification-handlers/{notification_handler_id}
curl --request DELETE \
--url 'https://digily.link/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://digily.link/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \