Skip to main content
GET
/
v2
/
clicks
Get clicks
curl --request GET \
  --url https://www.wander-service.fr/api/clients/v2/clicks \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "createdAt": "<string>",
      "link": "<string>",
      "linkId": 123,
      "eventId": 123,
      "eventName": "<string>",
      "source": "<string>",
      "commission": 123
    }
  ],
  "pagination": {
    "totalItems": 123,
    "totalPages": 123,
    "perPage": 123,
    "currentPage": 123,
    "nextPageParams": {
      "pageNumber": 123,
      "limit": 123
    },
    "previousPageParams": {
      "pageNumber": 123,
      "limit": 123
    }
  }
}

Authorizations

Authorization
string
header
required

It is the "access_token" returned after login

Query Parameters

lastClickedAt
string

Retrieves only clicks that occurred after the specified date.

limit
number
Required range: 1 <= x <= 1000
pageNumber
number
Required range: x >= 1

Response

Successful operation

data
object[]
pagination
object