Operatorii de notificare

GET https://webpushke.com/api/notification-handlers/
curl --request GET \
--url 'https://webpushke.com/api/notification-handlers/' \
--header 'Authorization: Bearer {api_key}' \
Parametrii Detalii Descriere
page Opțional Întreg The page number that you want results from. Defaults to 1.
results_per_page Opțional Întreg 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:44:23" } ], "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:44:23" } }
POST https://webpushke.com/api/notification-handlers
Parametrii Detalii Descriere
name Necesar Şir -
type Necesar Şir Allowed values: email , webhook , slack , discord , telegram , microsoft_teams
email Opțional Şir Available when: type = email E-mail
webhook Opțional Şir Available when: type = webhook Adresa URL a webhook
slack Opțional Şir Available when: type = slack Slack webhook URL
discord Opțional Şir Available when: type = discord Adresa URL a webhook-ului Discord
telegram Opțional Şir Available when: type = telegram Token Telegram API
telegram_chat_id Opțional Şir Available when: type = telegram ID de chat Telegram
x_consumer_key Opțional Şir Available when: type = x Token Telegram API
x_consumer_secret Opțional Şir Available when: type = x Token Telegram API
x_access_token Opțional Şir Available when: type = x Token Telegram API
x_access_token_secret Opțional Şir Available when: type = x Token Telegram API
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}
Parametrii Detalii Descriere
name Opțional Şir -
type Opțional Şir Allowed values: email , webhook , slack , discord , telegram , microsoft_teams
email Opțional Şir Available when: type = email E-mail
webhook Opțional Şir Available when: type = webhook Adresa URL a webhook
slack Opțional Şir Available when: type = slack Slack webhook URL
discord Opțional Şir Available when: type = discord Adresa URL a webhook-ului Discord
telegram Opțional Şir Available when: type = telegram Token Telegram API
telegram_chat_id Opțional Şir Available when: type = telegram ID de chat Telegram
x_consumer_key Opțional Şir Available when: type = x Token Telegram API
x_consumer_secret Opțional Şir Available when: type = x Token Telegram API
x_access_token Opțional Şir Available when: type = x Token Telegram API
x_access_token_secret Opțional Şir Available when: type = x Token Telegram API
is_enabled Opțional 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}' \