Notification handlers
                                GET https://aibiolinker.com/api/notification-handlers/
                            
                        
                                curl --request GET \
--url 'https://aibiolinker.com/api/notification-handlers/' \
--header 'Authorization: Bearer {api_key}' \
                        --url 'https://aibiolinker.com/api/notification-handlers/' \
--header 'Authorization: Bearer {api_key}' \
| Parametry | Szczeg贸艂y | Opis | 
|---|---|---|
| page | Opcjonalny Ca艂kowity | Numer strony, z kt贸rej chcesz uzyska膰 wyniki. Domy艣lnie 1. | 
                            
| results_per_page | Opcjonalny Ca艂kowity | Ile wynik贸w chcesz na stron臋. Dozwolone warto艣ci to: 10 , 25 , 50 , 100 , 250 , 500 , 1000. Domy艣lnie 25. | 
                            
{
    "data": [
        {
            "id": 1,
            "type": "email",
            "name": "Work email",
            "settings": {
                "email": "hey@example.com"
            },
            "is_enabled": true,
            "last_datetime": null,
            "datetime": "2025-11-04 12:17:24",
        }
    ],
    "meta": {
        "page": 1,
        "results_per_page": 25,
        "total": 1,
        "total_pages": 1
    },
    "links": {
        "first": "https://aibiolinker.com/api/notification-handlers?page=1",
        "last": "https://aibiolinker.com/api/notification-handlers?page=1",
        "next": null,
        "prev": null,
        "self": "https://aibiolinker.com/api/notification-handlers?page=1"
    }
}
                        
                                GET https://aibiolinker.com/api/notification-handlers/{notification_handler_id}
                            
                        
                                curl --request GET \
--url 'https://aibiolinker.com/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \
                        --url 'https://aibiolinker.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-11-04 12:17:24",
    }
}
                        
                                POST https://aibiolinker.com/api/notification-handlers
                            
                        | Parametry | Szczeg贸艂y | Opis | 
|---|---|---|
| name | Wymagane Ci膮g | - | 
| type | Wymagane Ci膮g | Dozwolone warto艣ci: email , webhook , slack , discord , telegram , microsoft_teams | 
                            
| Opcjonalny Ci膮g | Dost臋pne kiedy: type = email Email | |
| webhook | Opcjonalny Ci膮g | Dost臋pne kiedy: type = webhook Webhook URL | 
| slack | Opcjonalny Ci膮g | Dost臋pne kiedy: type = slack Slack webhook URL | 
| discord | Opcjonalny Ci膮g | Dost臋pne kiedy: type = discord Discord webhook URL | 
| telegram | Opcjonalny Ci膮g | Dost臋pne kiedy: type = telegram Telegram API Token | 
| telegram_chat_id | Opcjonalny Ci膮g | Dost臋pne kiedy: type = telegram Telegram Chat ID | 
| microsoft_teams | Opcjonalny Ci膮g | Dost臋pne kiedy: type = microsoft_teams Microsoft Teams webhook URL | 
                                curl --request POST \
--url 'https://aibiolinker.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://aibiolinker.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://aibiolinker.com/api/notification-handlers/{notification_handler_id}
                            
                        | Parametry | Szczeg贸艂y | Opis | 
|---|---|---|
| name | Opcjonalny Ci膮g | - | 
| type | Opcjonalny Ci膮g | Dozwolone warto艣ci: email , webhook , slack , discord , telegram , microsoft_teams | 
                            
| Opcjonalny Ci膮g | Dost臋pne kiedy: type = email Email | |
| webhook | Opcjonalny Ci膮g | Dost臋pne kiedy: type = webhook Webhook URL | 
| slack | Opcjonalny Ci膮g | Dost臋pne kiedy: type = slack Slack webhook URL | 
| discord | Opcjonalny Ci膮g | Dost臋pne kiedy: type = discord Discord webhook URL | 
| telegram | Opcjonalny Ci膮g | Dost臋pne kiedy: type = telegram Telegram API Token | 
| telegram_chat_id | Opcjonalny Ci膮g | Dost臋pne kiedy: type = telegram Telegram Chat ID | 
| microsoft_teams | Opcjonalny Ci膮g | Dost臋pne kiedy: type = microsoft_teams Microsoft Teams webhook URL | 
| is_enabled | Opcjonalny Boolean | - | 
                                curl --request POST \
--url 'https://aibiolinker.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://aibiolinker.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://aibiolinker.com/api/notification-handlers/{notification_handler_id}
                            
                        
                                curl --request DELETE \
--url 'https://aibiolinker.com/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \
                            
                        --url 'https://aibiolinker.com/api/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}' \