Gestori di notifiche
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}' \
| Parametri | Dettagli | Descrizione |
|---|---|---|
| page | Opzionale Intero | Il numero di pagina da cui vuoi i risultati. Predefinito: 1. |
| results_per_page | Opzionale Intero | Quanti risultati vuoi per pagina. Valori consentiti: 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-11-29 17:52:34",
}
],
"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:52:34",
}
}
POST https://dmpilot.ru/api/notification-handlers
| Parametri | Dettagli | Descrizione |
|---|---|---|
| name | Obbligatorio Stringa | - |
| type | Obbligatorio Stringa | Valori consentiti: email , webhook , slack , discord , telegram , microsoft_teams , x , google_chat , internal_notification |
| Opzionale Stringa | Disponibile quando: type = email Email | |
| webhook | Opzionale Stringa | Disponibile quando: type = webhook URL webhook |
| slack | Opzionale Stringa | Disponibile quando: type = slack URL webhook Slack |
| discord | Opzionale Stringa | Disponibile quando: type = discord URL webhook Discord |
| telegram | Opzionale Stringa | Disponibile quando: type = telegram Token API Telegram |
| telegram_chat_id | Opzionale Stringa | Disponibile quando: type = telegram ID chat Telegram |
| microsoft_teams | Opzionale Stringa | Disponibile quando: type = microsoft_teams URL webhook Microsoft Teams |
| google_chat | Opzionale Stringa | Disponibile quando: type = google_chat URL webhook Google Chat |
| x_consumer_key | Opzionale Stringa | Disponibile quando: type = x Token API Telegram |
| x_consumer_secret | Opzionale Stringa | Disponibile quando: type = x Token API Telegram |
| x_access_token | Opzionale Stringa | Disponibile quando: type = x Token API Telegram |
| x_access_token_secret | Opzionale Stringa | Disponibile quando: type = x Token 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}
| Parametri | Dettagli | Descrizione |
|---|---|---|
| name | Opzionale Stringa | - |
| type | Opzionale Stringa | Valori consentiti: email , webhook , slack , discord , telegram , microsoft_teams , x , google_chat , internal_notification |
| Opzionale Stringa | Disponibile quando: type = email Email | |
| webhook | Opzionale Stringa | Disponibile quando: type = webhook URL webhook |
| slack | Opzionale Stringa | Disponibile quando: type = slack URL webhook Slack |
| discord | Opzionale Stringa | Disponibile quando: type = discord URL webhook Discord |
| telegram | Opzionale Stringa | Disponibile quando: type = telegram Token API Telegram |
| telegram_chat_id | Opzionale Stringa | Disponibile quando: type = telegram ID chat Telegram |
| microsoft_teams | Opzionale Stringa | Disponibile quando: type = microsoft_teams URL webhook Microsoft Teams |
| google_chat | Opzionale Stringa | Disponibile quando: type = google_chat URL webhook Google Chat |
| x_consumer_key | Opzionale Stringa | Disponibile quando: type = x Token API Telegram |
| x_consumer_secret | Opzionale Stringa | Disponibile quando: type = x Token API Telegram |
| x_access_token | Opzionale Stringa | Disponibile quando: type = x Token API Telegram |
| x_access_token_secret | Opzionale Stringa | Disponibile quando: type = x Token API Telegram |
| is_enabled | Opzionale Booleano | - |
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}' \