Gestori delle notifiche
GET https://notify.gtechgroup.it/api/notification-handler/
curl --request GET \
--url 'https://notify.gtechgroup.it/api/notification-handler/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://notify.gtechgroup.it/api/notification-handler/' \
--header 'Authorization: Bearer {api_key}' \
Parametri | Dettagli | Descrizione |
---|---|---|
page | Opzionale Integer | Il numero di pagina da cui desideri i risultati. Predefinito a 1 . |
results_per_page | Opzionale Integer | Quanti risultati desideri per pagina. I valori consentiti sono: 10 , 25 , 50 , 100 , 250 , 500 , 1000 . Predefinito a 25 . |
{
"data": [
{
"id": 1,
"type": "email",
"name": "Work email",
"settings": {
"email": "[email protected]"
},
"is_enabled": true,
"last_datetime": null,
"datetime": "2021-06-27 22:16:23"
}
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://notify.gtechgroup.it/api/notification-handler?&page=1",
"last": "https://notify.gtechgroup.it/api/notification-handler?&page=1",
"next": null,
"prev": null,
"self": "https://notify.gtechgroup.it/api/notification-handler?&page=1"
}
}
GET https://notify.gtechgroup.it/api/notification-handler/{notification_handler_id}
curl --request GET \
--url 'https://notify.gtechgroup.it/api/notification-handler/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://notify.gtechgroup.it/api/notification-handler/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \
{
"data": {
"id": 1,
"type": "email",
"name": "Work email",
"settings": {
"email": "[email protected]"
},
"is_enabled": true,
"last_datetime": null,
"datetime": "2021-06-27 22:16:23"
}
}
POST https://notify.gtechgroup.it/api/notification-handlers
Parametri | Dettagli | Descrizione |
---|---|---|
name | Richiesto String | - |
type | Richiesto String | Valori consentiti: email , webhook , slack , discord , telegram , whatsapp |
Opzionale String | Disponibile quando: type = email Email | |
webhook | Opzionale String | Disponibile quando: type = webhook URL del webhook |
slack | Opzionale String | Disponibile quando: type = slack URL webhook di Slack |
discord | Opzionale String | Disponibile quando: type = discord URL webhook di Discord |
telegram | Opzionale String | Disponibile quando: type = telegram Token API di Telegram |
telegram_chat_id | Opzionale String | Disponibile quando: type = telegram ID chat di Telegram |
curl --request POST \
--url 'https://notify.gtechgroup.it/api/notification-handlers' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Example' \
--form 'type=email' \
--form 'email=[email protected]' \
--url 'https://notify.gtechgroup.it/api/notification-handlers' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Example' \
--form 'type=email' \
--form 'email=[email protected]' \
{
"data": {
"id": 1
}
}
POST https://notify.gtechgroup.it/api/notification-handlers/{notification_handler_id}
Parametri | Dettagli | Descrizione |
---|---|---|
name | Opzionale String | - |
type | Opzionale String | Valori consentiti: email , webhook , slack , discord , telegram , whatsapp |
Opzionale String | Disponibile quando: type = email Email | |
webhook | Opzionale String | Disponibile quando: type = webhook URL del webhook |
slack | Opzionale String | Disponibile quando: type = slack URL webhook di Slack |
discord | Opzionale String | Disponibile quando: type = discord URL webhook di Discord |
telegram | Opzionale String | Disponibile quando: type = telegram Token API di Telegram |
telegram_chat_id | Opzionale String | Disponibile quando: type = telegram ID chat di Telegram |
is_enabled | Opzionale Boolean | - |
curl --request POST \
--url 'https://notify.gtechgroup.it/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://notify.gtechgroup.it/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://notify.gtechgroup.it/api/notification-handlers/{notification_handler_id}
curl --request DELETE \
--url 'https://notify.gtechgroup.it/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://notify.gtechgroup.it/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \