Benachrichtigungshandler
GET https://pushpal.io/api/notification-handler/
curl --request GET \
--url 'https://pushpal.io/api/notification-handler/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://pushpal.io/api/notification-handler/' \
--header 'Authorization: Bearer {api_key}' \
Parameter | Einzelheiten | Beschreibung |
---|---|---|
page | Optional Ganzzahl | Die Seitennummer, von der Sie Ergebnisse möchten. Standardmäßig auf 1 gesetzt. |
results_per_page | Optional Ganzzahl | Wie viele Ergebnisse möchten Sie pro Seite haben. Zulässige Werte sind: 10 , 25 , 50 , 100 , 250 , 500 , 1000 . Standardmäßig ist 25 . |
{
"data": [
{
"id": 1,
"type": "email",
"name": "Work email",
"settings": {
"email": "hey@example.com"
},
"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://pushpal.io/api/notification-handler?&page=1",
"last": "https://pushpal.io/api/notification-handler?&page=1",
"next": null,
"prev": null,
"self": "https://pushpal.io/api/notification-handler?&page=1"
}
}
GET https://pushpal.io/api/notification-handler/{notification_handler_id}
curl --request GET \
--url 'https://pushpal.io/api/notification-handler/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://pushpal.io/api/notification-handler/{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": "2021-06-27 22:16:23"
}
}
POST https://pushpal.io/api/notification-handlers
Parameter | Einzelheiten | Beschreibung |
---|---|---|
name | Erforderlich Seil | - |
type | Erforderlich Seil | Erlaubte Werte: email , webhook , slack , discord , telegram , microsoft_teams |
Optional Seil | Verfügbar wenn: type = email E-Mail | |
webhook | Optional Seil | Verfügbar wenn: type = webhook Webhook URL |
slack | Optional Seil | Verfügbar wenn: type = slack Slack Webhook URL |
discord | Optional Seil | Verfügbar wenn: type = discord Discord Webhook URL |
telegram | Optional Seil | Verfügbar wenn: type = telegram Telegram API-Token |
telegram_chat_id | Optional Seil | Verfügbar wenn: type = telegram Telegram Chat-ID |
curl --request POST \
--url 'https://pushpal.io/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://pushpal.io/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://pushpal.io/api/notification-handlers/{notification_handler_id}
Parameter | Einzelheiten | Beschreibung |
---|---|---|
name | Optional Seil | - |
type | Optional Seil | Erlaubte Werte: email , webhook , slack , discord , telegram , microsoft_teams |
Optional Seil | Verfügbar wenn: type = email E-Mail | |
webhook | Optional Seil | Verfügbar wenn: type = webhook Webhook URL |
slack | Optional Seil | Verfügbar wenn: type = slack Slack Webhook URL |
discord | Optional Seil | Verfügbar wenn: type = discord Discord Webhook URL |
telegram | Optional Seil | Verfügbar wenn: type = telegram Telegram API-Token |
telegram_chat_id | Optional Seil | Verfügbar wenn: type = telegram Telegram Chat-ID |
is_enabled | Optional Boolescher | - |
curl --request POST \
--url 'https://pushpal.io/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://pushpal.io/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://pushpal.io/api/notification-handlers/{notification_handler_id}
curl --request DELETE \
--url 'https://pushpal.io/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://pushpal.io/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \