Gestori delle notifiche

GET https://webpushke.com/api/notification-handlers/
curl --request GET \
--url 'https://webpushke.com/api/notification-handlers/' \
--header 'Authorization: Bearer {api_key}' \
Parametri Dettagli Descrizione
page Opzionale Intero The page number that you want results from. Defaults to 1.
results_per_page Opzionale Intero How many results you want per page. Allowed values are: 10 , 25 , 50 , 100 , 250 , 500 , 1000. Defaults to 25.
{ "data": [ { "id": 1, "type": "email", "name": "Work email", "settings": { "email": "hey@example.com" }, "is_enabled": true, "last_datetime": null, "datetime": "2025-04-04 18:31:09" } ], "meta": { "page": 1, "results_per_page": 25, "total": 1, "total_pages": 1 }, "links": { "first": "https://webpushke.com/api/notification-handlers?&page=1", "last": "https://webpushke.com/api/notification-handlers?&page=1", "next": null, "prev": null, "self": "https://webpushke.com/api/notification-handlers?&page=1" } }
GET https://webpushke.com/api/notification-handlers/{notification_handler_id}
curl --request GET \
--url 'https://webpushke.com/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-04-04 18:31:09" } }
POST https://webpushke.com/api/notification-handlers
Parametri Dettagli Descrizione
name Required Corda -
type Required Corda Allowed values: email , webhook , slack , discord , telegram , microsoft_teams
email Opzionale Corda Available when: type = email E-mail
webhook Opzionale Corda Available when: type = webhook URL del webhook
slack Opzionale Corda Available when: type = slack URL del webhook Slack
discord Opzionale Corda Available when: type = discord URL del webhook Discord
telegram Opzionale Corda Available when: type = telegram Token API Telegramma
telegram_chat_id Opzionale Corda Available when: type = telegram ID chat Telegram
x_consumer_key Opzionale Corda Available when: type = x Token API Telegramma
x_consumer_secret Opzionale Corda Available when: type = x Token API Telegramma
x_access_token Opzionale Corda Available when: type = x Token API Telegramma
x_access_token_secret Opzionale Corda Available when: type = x Token API Telegramma
curl --request POST \
--url 'https://webpushke.com/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://webpushke.com/api/notification-handlers/{notification_handler_id}
Parametri Dettagli Descrizione
name Opzionale Corda -
type Opzionale Corda Allowed values: email , webhook , slack , discord , telegram , microsoft_teams
email Opzionale Corda Available when: type = email E-mail
webhook Opzionale Corda Available when: type = webhook URL del webhook
slack Opzionale Corda Available when: type = slack URL del webhook Slack
discord Opzionale Corda Available when: type = discord URL del webhook Discord
telegram Opzionale Corda Available when: type = telegram Token API Telegramma
telegram_chat_id Opzionale Corda Available when: type = telegram ID chat Telegram
x_consumer_key Opzionale Corda Available when: type = x Token API Telegramma
x_consumer_secret Opzionale Corda Available when: type = x Token API Telegramma
x_access_token Opzionale Corda Available when: type = x Token API Telegramma
x_access_token_secret Opzionale Corda Available when: type = x Token API Telegramma
is_enabled Opzionale Boolean -
curl --request POST \
--url 'https://webpushke.com/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://webpushke.com/api/notification-handlers/{notification_handler_id}
curl --request DELETE \
--url 'https://webpushke.com/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \