Journaux des abonnés
GET https://pushsmm.com/api/subscribers-logs/
curl --request GET \
--url 'https://pushsmm.com/api/subscribers-logs/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://pushsmm.com/api/subscribers-logs/' \
--header 'Authorization: Bearer {api_key}' \
| Paramètres | Détails | Description |
|---|---|---|
| search_by | Optionnel Chaîne | Valeurs autorisées : ip |
| search | Optionnel Chaîne | |
| page | Optionnel Entier | Le numéro de page dont vous souhaitez obtenir des résultats. Par défaut, c'est 1. |
| results_per_page | Optionnel Entier | Combien de résultats souhaitez-vous par page ? Les valeurs autorisées sont : 10 , 25 , 50 , 100 , 250 , 500 , 1000. Par défaut, c'est 25. |
| website_id | Optionnel Entier | - |
| campaign_id | Optionnel Entier | - |
| subscriber_id | Optionnel Entier | - |
| flow_id | Optionnel Entier | - |
| type | Optionnel Entier | - |
{
"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-11-22 00:47:52",
},
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://pushsmm.com/api/subscribers-logs?page=1",
"last": "https://pushsmm.com/api/subscribers-logs?page=1",
"next": null,
"prev": null,
"self": "https://pushsmm.com/api/subscribers-logs?page=1"
}
}