ตัวจัดการการแจ้งเตือน
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}' \
| พารามิเตอร์ | รายละเอียด | คำอธิบาย |
|---|---|---|
| page | ไม่จำเป็น จำนวนเต็ม | หมายเลขหน้าที่คุณต้องการผลลัพธ์ ค่าเริ่มต้นคือ 1 |
| results_per_page | ไม่จำเป็น จำนวนเต็ม | จำนวนผลลัพธ์ที่คุณต้องการต่อหน้า ค่าที่อนุญาตคือ: 10 , 25 , 50 , 100 , 250 , 500 , 1000 ค่าเริ่มต้นคือ 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:50",
}
],
"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:50",
}
}
POST https://dmpilot.ru/api/notification-handlers
| พารามิเตอร์ | รายละเอียด | คำอธิบาย |
|---|---|---|
| name | จำเป็นต้องมี สตริง | - |
| type | จำเป็นต้องมี สตริง | ค่าที่อนุญาต: email , webhook , slack , discord , telegram , microsoft_teams , x , google_chat , internal_notification |
| ไม่จำเป็น สตริง | ใช้ได้เมื่อ: type = email อีเมล | |
| webhook | ไม่จำเป็น สตริง | ใช้ได้เมื่อ: type = webhook URL Webhook |
| slack | ไม่จำเป็น สตริง | ใช้ได้เมื่อ: type = slack URL Webhook ของ Slack |
| discord | ไม่จำเป็น สตริง | ใช้ได้เมื่อ: type = discord URL Webhook ของ Discord |
| telegram | ไม่จำเป็น สตริง | ใช้ได้เมื่อ: type = telegram โทเค็น API ของ Telegram |
| telegram_chat_id | ไม่จำเป็น สตริง | ใช้ได้เมื่อ: type = telegram รหัสแชท Telegram |
| microsoft_teams | ไม่จำเป็น สตริง | ใช้ได้เมื่อ: type = microsoft_teams URL Webhook ของ Microsoft Teams |
| google_chat | ไม่จำเป็น สตริง | ใช้ได้เมื่อ: type = google_chat URL Webhook ของ Google Chat |
| x_consumer_key | ไม่จำเป็น สตริง | ใช้ได้เมื่อ: type = x โทเค็น API ของ Telegram |
| x_consumer_secret | ไม่จำเป็น สตริง | ใช้ได้เมื่อ: type = x โทเค็น API ของ Telegram |
| x_access_token | ไม่จำเป็น สตริง | ใช้ได้เมื่อ: type = x โทเค็น API ของ Telegram |
| x_access_token_secret | ไม่จำเป็น สตริง | ใช้ได้เมื่อ: type = x โทเค็น 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}
| พารามิเตอร์ | รายละเอียด | คำอธิบาย |
|---|---|---|
| name | ไม่จำเป็น สตริง | - |
| type | ไม่จำเป็น สตริง | ค่าที่อนุญาต: email , webhook , slack , discord , telegram , microsoft_teams , x , google_chat , internal_notification |
| ไม่จำเป็น สตริง | ใช้ได้เมื่อ: type = email อีเมล | |
| webhook | ไม่จำเป็น สตริง | ใช้ได้เมื่อ: type = webhook URL Webhook |
| slack | ไม่จำเป็น สตริง | ใช้ได้เมื่อ: type = slack URL Webhook ของ Slack |
| discord | ไม่จำเป็น สตริง | ใช้ได้เมื่อ: type = discord URL Webhook ของ Discord |
| telegram | ไม่จำเป็น สตริง | ใช้ได้เมื่อ: type = telegram โทเค็น API ของ Telegram |
| telegram_chat_id | ไม่จำเป็น สตริง | ใช้ได้เมื่อ: type = telegram รหัสแชท Telegram |
| microsoft_teams | ไม่จำเป็น สตริง | ใช้ได้เมื่อ: type = microsoft_teams URL Webhook ของ Microsoft Teams |
| google_chat | ไม่จำเป็น สตริง | ใช้ได้เมื่อ: type = google_chat URL Webhook ของ Google Chat |
| x_consumer_key | ไม่จำเป็น สตริง | ใช้ได้เมื่อ: type = x โทเค็น API ของ Telegram |
| x_consumer_secret | ไม่จำเป็น สตริง | ใช้ได้เมื่อ: type = x โทเค็น API ของ Telegram |
| x_access_token | ไม่จำเป็น สตริง | ใช้ได้เมื่อ: type = x โทเค็น API ของ Telegram |
| x_access_token_secret | ไม่จำเป็น สตริง | ใช้ได้เมื่อ: type = x โทเค็น API ของ Telegram |
| is_enabled | ไม่จำเป็น บูลีน | - |
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}' \