Subscribers logs
                                GET https://www.sas.com.ru/push/api/subscribers-logs/
                            
                        
                                curl --request GET \
--url 'https://www.sas.com.ru/push/api/subscribers-logs/' \
--header 'Authorization: Bearer {api_key}' \
                        --url 'https://www.sas.com.ru/push/api/subscribers-logs/' \
--header 'Authorization: Bearer {api_key}' \
| Parameters | Details | Description | 
|---|---|---|
| search_by | Optional String | Allowed values: ip | 
| search | Optional String | |
| page | Optional Integer | The page number that you want results from. Defaults to 1. | 
| results_per_page | Optional Integer | How many results you want per page. Allowed values are: 10,25,50,100,250,500,1000. Defaults to25. | 
| website_id | Optional Integer | - | 
| campaign_id | Optional Integer | - | 
| subscriber_id | Optional Integer | - | 
| flow_id | Optional Integer | - | 
| type | Optional Integer | - | 
{
    "data": [
        {
            "id": 1,
            "subscriber_id": 1,
            "campaign_id": 0,
            "flow_id": 0,
            "personal_notification_id": 1,
            "website_id": 1,
            "user_id": 1,
            "ip": "123.123.123.123",
            "type": "clicked_notification",
            "datetime": "2025-10-31 11:51:39"
        },
    ],
    "meta": {
        "page": 1,
        "results_per_page": 25,
        "total": 1,
        "total_pages": 1
    },
    "links": {
        "first": "https://www.sas.com.ru/push/api/subscribers-logs?&page=1",
        "last": "https://www.sas.com.ru/push/api/subscribers-logs?&page=1",
        "next": null,
        "prev": null,
        "self": "https://www.sas.com.ru/push/api/subscribers-logs?&page=1"
    }
}