Registros de suscriptores
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}' \
Parámetros | Detalles | Descripción |
---|---|---|
search_by | Opcional Cadena | Valores permitidos: ip |
search | Opcional Cadena | |
page | Opcional Entero | El número de página del que deseas obtener resultados. Por defecto es 1 . |
results_per_page | Opcional Entero | Cuántos resultados deseas por página. Los valores permitidos son: 10 , 25 , 50 , 100 , 250 , 500 , 1000 . Por defecto es 25 . |
website_id | Opcional Entero | - |
campaign_id | Opcional Entero | - |
subscriber_id | Opcional Entero | - |
flow_id | Opcional Entero | - |
type | Opcional Entero | - |
{
"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 14:56:16"
},
],
"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"
}
}