Notification handlers
GET https://thetinybell.com/api/notification-handlers/
curl --request GET \
--url 'https://thetinybell.com/api/notification-handlers/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://thetinybell.com/api/notification-handlers/' \
--header 'Authorization: Bearer {api_key}' \
Par谩metros | Detalles | Descripci贸n |
---|---|---|
page | Opcional Entero | El n煤mero de p谩gina del que deseas obtener resultados. Por defecto es 1 |
results_per_page | Opcional Entero | 驴Cu谩ntos resultados deseas por p谩gina? Los valores permitidos son: 10 , 25 , 50 , 100 , 250 , 500 , 1000 . Por defecto es 25 . |
{
"data": [
{
"id": 1,
"type": "email",
"name": "Work email",
"settings": {
"email": "hey@example.com"
},
"is_enabled": true,
"last_datetime": null,
"datetime": "2025-04-04 23:15:35"
}
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://thetinybell.com/api/notification-handlers?&page=1",
"last": "https://thetinybell.com/api/notification-handlers?&page=1",
"next": null,
"prev": null,
"self": "https://thetinybell.com/api/notification-handlers?&page=1"
}
}
GET https://thetinybell.com/api/notification-handlers/{notification_handler_id}
curl --request GET \
--url 'https://thetinybell.com/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://thetinybell.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 23:15:35"
}
}
POST https://thetinybell.com/api/notification-handlers
Par谩metros | Detalles | Descripci贸n |
---|---|---|
name | Requerido Cadena | - |
type | Requerido Cadena | Valores permitidos:
|
Opcional Cadena | Disponible cuando: type = email Email | |
webhook | Opcional Cadena | Disponible cuando: type = webhook Webhook URL |
slack | Opcional Cadena | Disponible cuando: type = slack Slack webhook URL |
discord | Opcional Cadena | Disponible cuando: type = discord Discord webhook URL |
telegram | Opcional Cadena | Disponible cuando: type = telegram Telegram API Token |
telegram_chat_id | Opcional Cadena | Disponible cuando: type = telegram Telegram Chat ID |
x_consumer_key | Opcional Cadena | Disponible cuando: type = x Telegram API Token |
x_consumer_secret | Opcional Cadena | Disponible cuando: type = x Telegram API Token |
x_access_token | Opcional Cadena | Disponible cuando: type = x Telegram API Token |
x_access_token_secret | Opcional Cadena | Disponible cuando: type = x Telegram API Token |
curl --request POST \
--url 'https://thetinybell.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://thetinybell.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://thetinybell.com/api/notification-handlers/{notification_handler_id}
Par谩metros | Detalles | Descripci贸n |
---|---|---|
name | Opcional Cadena | - |
type | Opcional Cadena | Valores permitidos:
|
Opcional Cadena | Disponible cuando: type = email Email | |
webhook | Opcional Cadena | Disponible cuando: type = webhook Webhook URL |
slack | Opcional Cadena | Disponible cuando: type = slack Slack webhook URL |
discord | Opcional Cadena | Disponible cuando: type = discord Discord webhook URL |
telegram | Opcional Cadena | Disponible cuando: type = telegram Telegram API Token |
telegram_chat_id | Opcional Cadena | Disponible cuando: type = telegram Telegram Chat ID |
x_consumer_key | Opcional Cadena | Disponible cuando: type = x Telegram API Token |
x_consumer_secret | Opcional Cadena | Disponible cuando: type = x Telegram API Token |
x_access_token | Opcional Cadena | Disponible cuando: type = x Telegram API Token |
x_access_token_secret | Opcional Cadena | Disponible cuando: type = x Telegram API Token |
is_enabled | Opcional Boolean | - |
curl --request POST \
--url 'https://thetinybell.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://thetinybell.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://thetinybell.com/api/notification-handlers/{notification_handler_id}
curl --request DELETE \
--url 'https://thetinybell.com/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://thetinybell.com/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \