Обработчики уведомлений
GET https://uprobot.co/api/notification-handlers/
curl --request GET \
--url 'https://uprobot.co/api/notification-handlers/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://uprobot.co/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": "[email protected]"
},
"is_enabled": true,
"last_datetime": null,
"datetime": "2021-06-27 22:16:23"
}
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://uprobot.co/api/notification-handlers?&page=1",
"last": "https://uprobot.co/api/notification-handlers?&page=1",
"next": null,
"prev": null,
"self": "https://uprobot.co/api/notification-handlers?&page=1"
}
}
GET https://uprobot.co/api/notification-handlers/{notification_handler_id}
curl --request GET \
--url 'https://uprobot.co/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://uprobot.co/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \
{
"data": {
"id": 1,
"type": "email",
"name": "Work email",
"settings": {
"email": "[email protected]"
},
"is_enabled": true,
"last_datetime": null,
"datetime": "2021-06-27 22:16:23"
}
}
POST https://uprobot.co/api/notification-handlers
Параметры | Детали | Описание |
---|---|---|
name | Обязательно Строка | - |
type | Обязательно Строка | Допустимые значения: email , webhook , slack , discord , telegram , microsoft_teams , x , push_subscriber_id |
Необязательно Строка | Доступно, когда: type = email Электронная почта | |
webhook | Необязательно Строка | Доступно, когда: type = webhook URL вебхука |
slack | Необязательно Строка | Доступно, когда: type = slack URL вебхука Slack |
discord | Необязательно Строка | Доступно, когда: type = discord URL вебхука Discord |
telegram | Необязательно Строка | Доступно, когда: type = telegram Токен API Telegram |
telegram_chat_id | Необязательно Строка | Доступно, когда: type = telegram Telegram Chat ID |
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://uprobot.co/api/notification-handlers' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Example' \
--form 'type=email' \
--form 'email=[email protected]' \
--url 'https://uprobot.co/api/notification-handlers' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Example' \
--form 'type=email' \
--form 'email=[email protected]' \
{
"data": {
"id": 1
}
}
POST https://uprobot.co/api/notification-handlers/{notification_handler_id}
Параметры | Детали | Описание |
---|---|---|
name | Необязательно Строка | - |
type | Необязательно Строка | Допустимые значения: email , webhook , slack , discord , telegram , microsoft_teams , x , push_subscriber_id |
Необязательно Строка | Доступно, когда: type = email Электронная почта | |
webhook | Необязательно Строка | Доступно, когда: type = webhook URL вебхука |
slack | Необязательно Строка | Доступно, когда: type = slack URL вебхука Slack |
discord | Необязательно Строка | Доступно, когда: type = discord URL вебхука Discord |
telegram | Необязательно Строка | Доступно, когда: type = telegram Токен API Telegram |
telegram_chat_id | Необязательно Строка | Доступно, когда: type = telegram Telegram Chat ID |
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://uprobot.co/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://uprobot.co/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://uprobot.co/api/notification-handlers/{notification_handler_id}
curl --request DELETE \
--url 'https://uprobot.co/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://uprobot.co/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \