Gestionnaires de notifications

GET https://web-signal.com/api/notification-handlers/
curl --request GET \
--url 'https://web-signal.com/api/notification-handlers/' \
--header 'Authorization: Bearer {api_key}' \
Paramètres Détails Description
page Optionnel Entier Numéro de page souhaité. Par défaut 1.
results_per_page Optionnel Entier Nombre de résultats par page. Valeurs autorisées : 10 , 25 , 50 , 100 , 250 , 500 , 1000. Par défaut 25.
{
    "data": [
        {
            "id": 1,
            "type": "email",
            "name": "Work email",
            "settings": {
                "email": "hey@example.com"
            },
            "is_enabled": true,
            "last_datetime": null,
            "datetime": "2025-10-14 16:47:51",
        }
    ],
    "meta": {
        "page": 1,
        "results_per_page": 25,
        "total": 1,
        "total_pages": 1
    },
    "links": {
        "first": "https://web-signal.com/api/notification-handlers?page=1",
        "last": "https://web-signal.com/api/notification-handlers?page=1",
        "next": null,
        "prev": null,
        "self": "https://web-signal.com/api/notification-handlers?page=1"
    }
}
GET https://web-signal.com/api/notification-handlers/{notification_handler_id}
curl --request GET \
--url 'https://web-signal.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-10-14 16:47:51",
    }
}
POST https://web-signal.com/api/notification-handlers
Paramètres Détails Description
name Requis Chaîne -
type Requis Chaîne Valeurs autorisées : email , webhook , slack , discord , telegram , microsoft_teams
email Optionnel Chaîne Disponible lorsque : type = email E-mail
webhook Optionnel Chaîne Disponible lorsque : type = webhook URL du webhook
slack Optionnel Chaîne Disponible lorsque : type = slack URL webhook Slack
discord Optionnel Chaîne Disponible lorsque : type = discord URL webhook Discord
telegram Optionnel Chaîne Disponible lorsque : type = telegram Jeton API Telegram
telegram_chat_id Optionnel Chaîne Disponible lorsque : type = telegram ID de chat Telegram
microsoft_teams Optionnel Chaîne Disponible lorsque : type = microsoft_teams URL webhook Microsoft Teams
curl --request POST \
--url 'https://web-signal.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://web-signal.com/api/notification-handlers/{notification_handler_id}
Paramètres Détails Description
name Optionnel Chaîne -
type Optionnel Chaîne Valeurs autorisées : email , webhook , slack , discord , telegram , microsoft_teams
email Optionnel Chaîne Disponible lorsque : type = email E-mail
webhook Optionnel Chaîne Disponible lorsque : type = webhook URL du webhook
slack Optionnel Chaîne Disponible lorsque : type = slack URL webhook Slack
discord Optionnel Chaîne Disponible lorsque : type = discord URL webhook Discord
telegram Optionnel Chaîne Disponible lorsque : type = telegram Jeton API Telegram
telegram_chat_id Optionnel Chaîne Disponible lorsque : type = telegram ID de chat Telegram
microsoft_teams Optionnel Chaîne Disponible lorsque : type = microsoft_teams URL webhook Microsoft Teams
is_enabled Optionnel Booléen -
curl --request POST \
--url 'https://web-signal.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://web-signal.com/api/notification-handlers/{notification_handler_id}
curl --request DELETE \
--url 'https://web-signal.com/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \