Gestionnaires de notification
GET https://dmpilot.ru/api/notification-handlers/
curl --request GET \
--url 'https://dmpilot.ru/api/notification-handlers/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://dmpilot.ru/api/notification-handlers/' \
--header 'Authorization: Bearer {api_key}' \
| Parametres | Détails | Description |
|---|---|---|
| page | Optionnel Entier | Le numero de page dont vous voulez les resultats. Par defaut : 1. |
| results_per_page | Optionnel Entier | Nombre de resultats par page. Les valeurs autorisees sont : 10 , 25 , 50 , 100 , 250 , 500 , 1000. Par defaut : 25. |
{
"data": [
{
"id": 1,
"type": "email",
"name": "Work email",
"settings": {
"email": "hey@example.com"
},
"is_enabled": true,
"last_datetime": null,
"datetime": "2025-11-29 17:58:49",
}
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://dmpilot.ru/api/notification-handlers?page=1",
"last": "https://dmpilot.ru/api/notification-handlers?page=1",
"next": null,
"prev": null,
"self": "https://dmpilot.ru/api/notification-handlers?page=1"
}
}
GET https://dmpilot.ru/api/notification-handlers/{notification_handler_id}
curl --request GET \
--url 'https://dmpilot.ru/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://dmpilot.ru/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-11-29 17:58:49",
}
}
POST https://dmpilot.ru/api/notification-handlers
| Parametres | Détails | Description |
|---|---|---|
| name | Obligatoire Chaine de caracteres | - |
| type | Obligatoire Chaine de caracteres | Valeurs autorisees : email , webhook , slack , discord , telegram , microsoft_teams , x , google_chat , internal_notification |
| Optionnel Chaine de caracteres | Disponible quand : type = email Email | |
| webhook | Optionnel Chaine de caracteres | Disponible quand : type = webhook URL Webhook |
| slack | Optionnel Chaine de caracteres | Disponible quand : type = slack URL webhook Slack |
| discord | Optionnel Chaine de caracteres | Disponible quand : type = discord URL webhook Discord |
| telegram | Optionnel Chaine de caracteres | Disponible quand : type = telegram Jeton API Telegram |
| telegram_chat_id | Optionnel Chaine de caracteres | Disponible quand : type = telegram ID de chat Telegram |
| microsoft_teams | Optionnel Chaine de caracteres | Disponible quand : type = microsoft_teams URL webhook Microsoft Teams |
| google_chat | Optionnel Chaine de caracteres | Disponible quand : type = google_chat URL webhook Google chat |
| x_consumer_key | Optionnel Chaine de caracteres | Disponible quand : type = x Jeton API Telegram |
| x_consumer_secret | Optionnel Chaine de caracteres | Disponible quand : type = x Jeton API Telegram |
| x_access_token | Optionnel Chaine de caracteres | Disponible quand : type = x Jeton API Telegram |
| x_access_token_secret | Optionnel Chaine de caracteres | Disponible quand : type = x Jeton API Telegram |
curl --request POST \
--url 'https://dmpilot.ru/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://dmpilot.ru/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://dmpilot.ru/api/notification-handlers/{notification_handler_id}
| Parametres | Détails | Description |
|---|---|---|
| name | Optionnel Chaine de caracteres | - |
| type | Optionnel Chaine de caracteres | Valeurs autorisees : email , webhook , slack , discord , telegram , microsoft_teams , x , google_chat , internal_notification |
| Optionnel Chaine de caracteres | Disponible quand : type = email Email | |
| webhook | Optionnel Chaine de caracteres | Disponible quand : type = webhook URL Webhook |
| slack | Optionnel Chaine de caracteres | Disponible quand : type = slack URL webhook Slack |
| discord | Optionnel Chaine de caracteres | Disponible quand : type = discord URL webhook Discord |
| telegram | Optionnel Chaine de caracteres | Disponible quand : type = telegram Jeton API Telegram |
| telegram_chat_id | Optionnel Chaine de caracteres | Disponible quand : type = telegram ID de chat Telegram |
| microsoft_teams | Optionnel Chaine de caracteres | Disponible quand : type = microsoft_teams URL webhook Microsoft Teams |
| google_chat | Optionnel Chaine de caracteres | Disponible quand : type = google_chat URL webhook Google chat |
| x_consumer_key | Optionnel Chaine de caracteres | Disponible quand : type = x Jeton API Telegram |
| x_consumer_secret | Optionnel Chaine de caracteres | Disponible quand : type = x Jeton API Telegram |
| x_access_token | Optionnel Chaine de caracteres | Disponible quand : type = x Jeton API Telegram |
| x_access_token_secret | Optionnel Chaine de caracteres | Disponible quand : type = x Jeton API Telegram |
| is_enabled | Optionnel Booleen | - |
curl --request POST \
--url 'https://dmpilot.ru/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://dmpilot.ru/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://dmpilot.ru/api/notification-handlers/{notification_handler_id}
curl --request DELETE \
--url 'https://dmpilot.ru/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://dmpilot.ru/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \