구독자 로그
GET https://pushye.com/api/subscribers-logs/
curl --request GET \
--url 'https://pushye.com/api/subscribers-logs/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://pushye.com/api/subscribers-logs/' \
--header 'Authorization: Bearer {api_key}' \
매개변수 | 세부사항 | 설명 |
---|---|---|
search_by | 선택 사항 문자열 | 허용된 값: ip |
search | 선택 사항 문자열 | |
page | 선택 사항 정수 | 결과를 원하는 페이지 번호입니다. 기본값은 1 입니다. |
results_per_page | 선택 사항 정수 | 페이지당 원하는 결과 수는 얼마입니까? 허용되는 값은: 10 , 25 , 50 , 100 , 250 , 500 , 1000 . 기본값은 25 입니다. |
website_id | 선택 사항 정수 | - |
campaign_id | 선택 사항 정수 | - |
subscriber_id | 선택 사항 정수 | - |
flow_id | 선택 사항 정수 | - |
type | 선택 사항 정수 | - |
{
"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-02-05 12:54:50"
},
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://pushye.com/api/subscribers-logs?&page=1",
"last": "https://pushye.com/api/subscribers-logs?&page=1",
"next": null,
"prev": null,
"self": "https://pushye.com/api/subscribers-logs?&page=1"
}
}