Website-logo

Webhooks

GET https://staging.gratisqrcode.nl/api/notification-handlers/
curl --request GET \
--url 'https://staging.gratisqrcode.nl/api/notification-handlers/' \
--header 'Authorization: Bearer {api_key}' \
Parameters Details Beschrijving
search Optioneel String De zoekstring.
search_by Optioneel String Op welk veld zoekt u. Toegestane waarden zijn: name.
is_enabled Optioneel Booleaans
type Optioneel String Op welk veld zoekt u. Toegestane waarden zijn: email, webhook, slack, discord, telegram, microsoft_teams.
datetime_field Optioneel String Toegestane waarden: datetime, last_datetime
datetime_start Optioneel String Filter resultaten vanaf deze datum en tijd. Formaat Y-m-d H:i:s.
datetime_end Optioneel String Filter resultaten tot deze datum en tijd. Formaat Y-m-d H:i:s.
order_by Optioneel String Op welk veld de resultaten moeten worden gerangschikt. Toegestane waarden zijn: notification_handler_id, datetime, last_datetime, name.
order_type Optioneel String De volgorde van de resultaten. Toegestane waarden zijn: ASC voor oplopende volgorde, en DESC voor aflopende volgorde.
search Optioneel String De zoekstring.
search_by Optioneel String Op welk veld zoekt u. Toegestane waarden zijn: name.
is_enabled Optioneel Booleaans
type Optioneel String Op welk veld zoekt u. Toegestane waarden zijn: email, webhook, slack, discord, telegram, microsoft_teams.
datetime_field Optioneel String Toegestane waarden: datetime, last_datetime
datetime_start Optioneel String Filter resultaten vanaf deze datum en tijd. Formaat Y-m-d H:i:s.
datetime_end Optioneel String Filter resultaten tot deze datum en tijd. Formaat Y-m-d H:i:s.
order_by Optioneel String Op welk veld de resultaten moeten worden gerangschikt. Toegestane waarden zijn: notification_handler_id, datetime, last_datetime, name.
order_type Optioneel String De volgorde van de resultaten. Toegestane waarden zijn: ASC voor oplopende volgorde, en DESC voor aflopende volgorde.
page Optioneel Geheel getal Het paginanummer waarvan u resultaten wilt. Standaard 1.
results_per_page Optioneel Geheel getal Hoeveel resultaten wilt u per pagina. Toegestane waarden zijn: 10, 25, 50, 100, 250, 500, 1000. Standaard ingesteld op 25.
{
    "data": [
        {
            "id": 1,
            "type": "email",
            "name": "Work email",
            "settings": {
                "email": "hey@example.com"
            },
            "is_enabled": true,
            "last_datetime": null,
            "datetime": "2026-06-17 18:33:57",
        }
    ],
    "meta": {
        "page": 1,
        "results_per_page": 25,
        "total": 1,
        "total_pages": 1
    },
    "links": {
        "first": "https://staging.gratisqrcode.nl/api/notification-handlers?page=1",
        "last": "https://staging.gratisqrcode.nl/api/notification-handlers?page=1",
        "next": null,
        "prev": null,
        "self": "https://staging.gratisqrcode.nl/api/notification-handlers?page=1"
    }
}
GET https://staging.gratisqrcode.nl/api/notification-handlers/{notification_handler_id}
curl --request GET \
--url 'https://staging.gratisqrcode.nl/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": "2026-06-17 18:33:57",
    }
}
POST https://staging.gratisqrcode.nl/api/notification-handlers
Parameters Details Beschrijving
name Vereist String -
type Vereist String Toegestane waarden: email, webhook, slack, discord, telegram, microsoft_teams
email Optioneel String Beschikbaar wanneer: type = email E-mail
webhook Optioneel String Beschikbaar wanneer: type = webhook Webhook URL
slack Optioneel String Beschikbaar wanneer: type = slack Slack webhook URL
discord Optioneel String Beschikbaar wanneer: type = discord Discord webhook URL
telegram Optioneel String Beschikbaar wanneer: type = telegram Telegram API Token
telegram_chat_id Optioneel String Beschikbaar wanneer: type = telegram Telegram Chat ID
microsoft_teams Optioneel String Beschikbaar wanneer: type = microsoft_teams Microsoft Teams webhook URL
curl --request POST \
--url 'https://staging.gratisqrcode.nl/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://staging.gratisqrcode.nl/api/notification-handlers/{notification_handler_id}
Parameters Details Beschrijving
name Optioneel String -
type Optioneel String Toegestane waarden: email, webhook, slack, discord, telegram, microsoft_teams
email Optioneel String Beschikbaar wanneer: type = email E-mail
webhook Optioneel String Beschikbaar wanneer: type = webhook Webhook URL
slack Optioneel String Beschikbaar wanneer: type = slack Slack webhook URL
discord Optioneel String Beschikbaar wanneer: type = discord Discord webhook URL
telegram Optioneel String Beschikbaar wanneer: type = telegram Telegram API Token
telegram_chat_id Optioneel String Beschikbaar wanneer: type = telegram Telegram Chat ID
microsoft_teams Optioneel String Beschikbaar wanneer: type = microsoft_teams Microsoft Teams webhook URL
is_enabled Optioneel Booleaans -
curl --request POST \
--url 'https://staging.gratisqrcode.nl/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://staging.gratisqrcode.nl/api/notification-handlers/{notification_handler_id}
curl --request DELETE \
--url 'https://staging.gratisqrcode.nl/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \