Bildirim işleyicileri
GET https://webpushke.com/api/notification-handlers/
curl --request GET \
--url 'https://webpushke.com/api/notification-handlers/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://webpushke.com/api/notification-handlers/' \
--header 'Authorization: Bearer {api_key}' \
Parametreler | Detaylar | Tanım |
---|---|---|
page | İsteğe bağlı Integer | Sonuç almak istediğiniz sayfa numarası. Varsayılanı 1 'dir. |
results_per_page | İsteğe bağlı Integer | Sayfa başına kaç sonuç istediğiniz. İzin verilen değerler: 10 , 25 , 50 , 100 , 250 , 500 , 1000 . Varsayılan olarak 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:36:36"
}
],
"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}' \
--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:36:36"
}
}
POST https://webpushke.com/api/notification-handlers
Parametreler | Detaylar | Tanım |
---|---|---|
name | Gerekli String | - |
type | Gerekli String | İzin verilen değerler: email , webhook , slack , discord , telegram , microsoft_teams |
İsteğe bağlı String | Şu durumda kullanılabilir: type = email E-posta | |
webhook | İsteğe bağlı String | Şu durumda kullanılabilir: type = webhook Webhook URL |
slack | İsteğe bağlı String | Şu durumda kullanılabilir: type = slack Slack webhook URL |
discord | İsteğe bağlı String | Şu durumda kullanılabilir: type = discord Discord webhook URL |
telegram | İsteğe bağlı String | Şu durumda kullanılabilir: type = telegram Telegram API Token |
telegram_chat_id | İsteğe bağlı String | Şu durumda kullanılabilir: type = telegram Telegram Sohbet Kimliği |
x_consumer_key | İsteğe bağlı String | Şu durumda kullanılabilir: type = x Telegram API Token |
x_consumer_secret | İsteğe bağlı String | Şu durumda kullanılabilir: type = x Telegram API Token |
x_access_token | İsteğe bağlı String | Şu durumda kullanılabilir: type = x Telegram API Token |
x_access_token_secret | İsteğe bağlı String | Şu durumda kullanılabilir: type = x Telegram API Token |
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' \
--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}
Parametreler | Detaylar | Tanım |
---|---|---|
name | İsteğe bağlı String | - |
type | İsteğe bağlı String | İzin verilen değerler: email , webhook , slack , discord , telegram , microsoft_teams |
İsteğe bağlı String | Şu durumda kullanılabilir: type = email E-posta | |
webhook | İsteğe bağlı String | Şu durumda kullanılabilir: type = webhook Webhook URL |
slack | İsteğe bağlı String | Şu durumda kullanılabilir: type = slack Slack webhook URL |
discord | İsteğe bağlı String | Şu durumda kullanılabilir: type = discord Discord webhook URL |
telegram | İsteğe bağlı String | Şu durumda kullanılabilir: type = telegram Telegram API Token |
telegram_chat_id | İsteğe bağlı String | Şu durumda kullanılabilir: type = telegram Telegram Sohbet Kimliği |
x_consumer_key | İsteğe bağlı String | Şu durumda kullanılabilir: type = x Telegram API Token |
x_consumer_secret | İsteğe bağlı String | Şu durumda kullanılabilir: type = x Telegram API Token |
x_access_token | İsteğe bağlı String | Şu durumda kullanılabilir: type = x Telegram API Token |
x_access_token_secret | İsteğe bağlı String | Şu durumda kullanılabilir: type = x Telegram API Token |
is_enabled | İsteğe bağlı 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' \
--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}' \
--url 'https://webpushke.com/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \