Obsługa powiadomień

GET https://webpushke.com/api/notification-handlers/
curl --request GET \
--url 'https://webpushke.com/api/notification-handlers/' \
--header 'Authorization: Bearer {api_key}' \
Parametry Bliższe dane Opis
page Fakultatywny Liczba całkowita The page number that you want results from. Defaults to 1.
results_per_page Fakultatywny Liczba całkowita 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:37:53" } ], "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:37:53" } }
POST https://webpushke.com/api/notification-handlers
Parametry Bliższe dane Opis
name Wymagany Smyczkowy -
type Wymagany Smyczkowy Allowed values: email , webhook , slack , discord , telegram , microsoft_teams
email Fakultatywny Smyczkowy Available when: type = email E-mail
webhook Fakultatywny Smyczkowy Available when: type = webhook Adres URL webhooka
slack Fakultatywny Smyczkowy Available when: type = slack Adres URL webhooka Slacka
discord Fakultatywny Smyczkowy Available when: type = discord Adres URL webhooka Discord
telegram Fakultatywny Smyczkowy Available when: type = telegram Token API Telegramu
telegram_chat_id Fakultatywny Smyczkowy Available when: type = telegram Identyfikator czatu Telegram
x_consumer_key Fakultatywny Smyczkowy Available when: type = x Token API Telegramu
x_consumer_secret Fakultatywny Smyczkowy Available when: type = x Token API Telegramu
x_access_token Fakultatywny Smyczkowy Available when: type = x Token API Telegramu
x_access_token_secret Fakultatywny Smyczkowy Available when: type = x Token API Telegramu
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}
Parametry Bliższe dane Opis
name Fakultatywny Smyczkowy -
type Fakultatywny Smyczkowy Allowed values: email , webhook , slack , discord , telegram , microsoft_teams
email Fakultatywny Smyczkowy Available when: type = email E-mail
webhook Fakultatywny Smyczkowy Available when: type = webhook Adres URL webhooka
slack Fakultatywny Smyczkowy Available when: type = slack Adres URL webhooka Slacka
discord Fakultatywny Smyczkowy Available when: type = discord Adres URL webhooka Discord
telegram Fakultatywny Smyczkowy Available when: type = telegram Token API Telegramu
telegram_chat_id Fakultatywny Smyczkowy Available when: type = telegram Identyfikator czatu Telegram
x_consumer_key Fakultatywny Smyczkowy Available when: type = x Token API Telegramu
x_consumer_secret Fakultatywny Smyczkowy Available when: type = x Token API Telegramu
x_access_token Fakultatywny Smyczkowy Available when: type = x Token API Telegramu
x_access_token_secret Fakultatywny Smyczkowy Available when: type = x Token API Telegramu
is_enabled Fakultatywny Boolowski -
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}' \