Benachrichtigungs-Handler
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}' \
Parameteren | Einzelheiten | Beschreibung |
---|---|---|
page | Optional Ganzzahl | Die Seitennummer, von der Sie Ergebnisse wünschen. Standardmäßig 1 . |
results_per_page | Optional Ganzzahl | Wie viele Ergebnisse möchten Sie pro Seite. Erlaubte Werte sind: 10 , 25 , 50 , 100 , 250 , 500 , 1000 . Standardmäßig 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
Parameteren | Einzelheiten | Beschreibung |
---|---|---|
name | Erforderlich Zeichenkette | - |
type | Erforderlich Zeichenkette | Erlaubte Werte: email , webhook , slack , discord , telegram , microsoft_teams , x , push_subscriber_id |
Optional Zeichenkette | Verfügbar, wenn: type = email E-Mail | |
webhook | Optional Zeichenkette | Verfügbar, wenn: type = webhook Webhook-URL |
slack | Optional Zeichenkette | Verfügbar, wenn: type = slack Slack-Webhook-URL |
discord | Optional Zeichenkette | Verfügbar, wenn: type = discord Discord-Webhook-URL |
telegram | Optional Zeichenkette | Verfügbar, wenn: type = telegram Telegram-API-Token |
telegram_chat_id | Optional Zeichenkette | Verfügbar, wenn: type = telegram Telegram-Chat-ID |
x_consumer_key | Optional Zeichenkette | Verfügbar, wenn: type = x Telegram-API-Token |
x_consumer_secret | Optional Zeichenkette | Verfügbar, wenn: type = x Telegram-API-Token |
x_access_token | Optional Zeichenkette | Verfügbar, wenn: type = x Telegram-API-Token |
x_access_token_secret | Optional Zeichenkette | Verfügbar, wenn: type = x Telegram-API-Token |
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}
Parameteren | Einzelheiten | Beschreibung |
---|---|---|
name | Optional Zeichenkette | - |
type | Optional Zeichenkette | Erlaubte Werte: email , webhook , slack , discord , telegram , microsoft_teams , x , push_subscriber_id |
Optional Zeichenkette | Verfügbar, wenn: type = email E-Mail | |
webhook | Optional Zeichenkette | Verfügbar, wenn: type = webhook Webhook-URL |
slack | Optional Zeichenkette | Verfügbar, wenn: type = slack Slack-Webhook-URL |
discord | Optional Zeichenkette | Verfügbar, wenn: type = discord Discord-Webhook-URL |
telegram | Optional Zeichenkette | Verfügbar, wenn: type = telegram Telegram-API-Token |
telegram_chat_id | Optional Zeichenkette | Verfügbar, wenn: type = telegram Telegram-Chat-ID |
x_consumer_key | Optional Zeichenkette | Verfügbar, wenn: type = x Telegram-API-Token |
x_consumer_secret | Optional Zeichenkette | Verfügbar, wenn: type = x Telegram-API-Token |
x_access_token | Optional Zeichenkette | Verfügbar, wenn: type = x Telegram-API-Token |
x_access_token_secret | Optional Zeichenkette | Verfügbar, wenn: type = x Telegram-API-Token |
is_enabled | Optional Boolesch | - |
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}' \