알림 핸들러
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 |
| slack | 선택 문자열 | 다음 경우에 사용 가능: type = slack 슬랙 웹훅 URL |
| discord | 선택 문자열 | 다음 경우에 사용 가능: type = discord 디스코드 웹훅 URL |
| telegram | 선택 문자열 | 다음 경우에 사용 가능: type = telegram 텔레그램 API 토큰 |
| telegram_chat_id | 선택 문자열 | 다음 경우에 사용 가능: type = telegram 텔레그램 채팅 ID |
| microsoft_teams | 선택 문자열 | 다음 경우에 사용 가능: type = microsoft_teams 마이크로소프트 팀즈 웹훅 URL |
| google_chat | 선택 문자열 | 다음 경우에 사용 가능: type = google_chat 구글 챗 웹훅 URL |
| x_consumer_key | 선택 문자열 | 다음 경우에 사용 가능: type = x 텔레그램 API 토큰 |
| x_consumer_secret | 선택 문자열 | 다음 경우에 사용 가능: type = x 텔레그램 API 토큰 |
| x_access_token | 선택 문자열 | 다음 경우에 사용 가능: type = x 텔레그램 API 토큰 |
| x_access_token_secret | 선택 문자열 | 다음 경우에 사용 가능: type = x 텔레그램 API 토큰 |
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 |
| slack | 선택 문자열 | 다음 경우에 사용 가능: type = slack 슬랙 웹훅 URL |
| discord | 선택 문자열 | 다음 경우에 사용 가능: type = discord 디스코드 웹훅 URL |
| telegram | 선택 문자열 | 다음 경우에 사용 가능: type = telegram 텔레그램 API 토큰 |
| telegram_chat_id | 선택 문자열 | 다음 경우에 사용 가능: type = telegram 텔레그램 채팅 ID |
| microsoft_teams | 선택 문자열 | 다음 경우에 사용 가능: type = microsoft_teams 마이크로소프트 팀즈 웹훅 URL |
| google_chat | 선택 문자열 | 다음 경우에 사용 가능: type = google_chat 구글 챗 웹훅 URL |
| x_consumer_key | 선택 문자열 | 다음 경우에 사용 가능: type = x 텔레그램 API 토큰 |
| x_consumer_secret | 선택 문자열 | 다음 경우에 사용 가능: type = x 텔레그램 API 토큰 |
| x_access_token | 선택 문자열 | 다음 경우에 사용 가능: type = x 텔레그램 API 토큰 |
| x_access_token_secret | 선택 문자열 | 다음 경우에 사용 가능: type = x 텔레그램 API 토큰 |
| 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}' \