Bildirim işleyicileri

GET https://webdr.tr/api/notification-handlers/
curl --request GET \
--url 'https://webdr.tr/api/notification-handlers/' \
--header 'Authorization: Bearer {api_key}' \
Parametreler Ayrıntılar Açıklama
page İsteğe bağlı Tamsayı Sonuçları almak istediğiniz sayfa numarası. Varsayılan değer 1 dir.
results_per_page İsteğe bağlı Tamsayı Sayfa başına kaç sonuç istiyorsunuz. İzin verilen değerler: 10 , 25 , 50 , 100 , 250 , 500 , 1000. Varsayılan olarak 25 dir.
{ "data": [ { "id": 1, "type": "email", "name": "Work email", "settings": { "email": "[email protected]" }, "is_enabled": true, "last_datetime": null, "datetime": "2025-04-04 10:12:24" } ], "meta": { "page": 1, "results_per_page": 25, "total": 1, "total_pages": 1 }, "links": { "first": "https://webdr.tr/api/notification-handlers?&page=1", "last": "https://webdr.tr/api/notification-handlers?&page=1", "next": null, "prev": null, "self": "https://webdr.tr/api/notification-handlers?&page=1" } }
GET https://webdr.tr/api/notification-handlers/{notification_handler_id}
curl --request GET \
--url 'https://webdr.tr/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-04-04 10:12:24" } }
POST https://webdr.tr/api/notification-handlers
Parametreler Ayrıntılar Açıklama
name Gerekli Dize -
type Gerekli Dize İzin verilen değerler: email , webhook , slack , discord , telegram , microsoft_teams
email İsteğe bağlı Dize Şu durumda kullanılabilir: type = email E-posta
webhook İsteğe bağlı Dize Şu durumda kullanılabilir: type = webhook Webhook URL si
slack İsteğe bağlı Dize Şu durumda kullanılabilir: type = slack Slack webhook URL si
discord İsteğe bağlı Dize Şu durumda kullanılabilir: type = discord Discord webhook URL si
telegram İsteğe bağlı Dize Şu durumda kullanılabilir: type = telegram Telegram API Token
telegram_chat_id İsteğe bağlı Dize Şu durumda kullanılabilir: type = telegram Telegram Sohbet Kimliği
x_consumer_key İsteğe bağlı Dize Şu durumda kullanılabilir: type = x Telegram API Token
x_consumer_secret İsteğe bağlı Dize Şu durumda kullanılabilir: type = x Telegram API Token
x_access_token İsteğe bağlı Dize Şu durumda kullanılabilir: type = x Telegram API Token
x_access_token_secret İsteğe bağlı Dize Şu durumda kullanılabilir: type = x Telegram API Token
curl --request POST \
--url 'https://webdr.tr/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://webdr.tr/api/notification-handlers/{notification_handler_id}
Parametreler Ayrıntılar Açıklama
name İsteğe bağlı Dize -
type İsteğe bağlı Dize İzin verilen değerler: email , webhook , slack , discord , telegram , microsoft_teams
email İsteğe bağlı Dize Şu durumda kullanılabilir: type = email E-posta
webhook İsteğe bağlı Dize Şu durumda kullanılabilir: type = webhook Webhook URL si
slack İsteğe bağlı Dize Şu durumda kullanılabilir: type = slack Slack webhook URL si
discord İsteğe bağlı Dize Şu durumda kullanılabilir: type = discord Discord webhook URL si
telegram İsteğe bağlı Dize Şu durumda kullanılabilir: type = telegram Telegram API Token
telegram_chat_id İsteğe bağlı Dize Şu durumda kullanılabilir: type = telegram Telegram Sohbet Kimliği
x_consumer_key İsteğe bağlı Dize Şu durumda kullanılabilir: type = x Telegram API Token
x_consumer_secret İsteğe bağlı Dize Şu durumda kullanılabilir: type = x Telegram API Token
x_access_token İsteğe bağlı Dize Şu durumda kullanılabilir: type = x Telegram API Token
x_access_token_secret İsteğe bağlı Dize Şu durumda kullanılabilir: type = x Telegram API Token
is_enabled İsteğe bağlı Boole -
curl --request POST \
--url 'https://webdr.tr/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://webdr.tr/api/notification-handlers/{notification_handler_id}
curl --request DELETE \
--url 'https://webdr.tr/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \