cURL
curl --request GET \ --url https://www.wander-service.fr/api/clients/v2/clicks \ --header 'Authorization: Bearer <token>'
{ "data": [ { "createdAt": "2024-09-12T12:00:06.138Z", "link": "<string>", "linkId": 123, "eventId": 123, "eventName": "<string>", "source": "billetreduc", "commission": 0.3 } ], "pagination": { "totalItems": 1000, "totalPages": 20, "perPage": 50, "currentPage": 5, "nextPageParams": { "pageNumber": 6, "limit": 50 }, "previousPageParams": { "pageNumber": 4, "limit": 50 } } }
It is the "access_token" returned after login
Retrieves only clicks that occurred after the specified date.
1 <= x <= 1000
x >= 1
Successful operation
The response is of type object.
object
Was this page helpful?