GET
/
workspaces
/
{url}
/
analytics
/
clicks
curl --request GET \
  --url https://api.reqlick.com/workspaces/{url}/analytics/clicks \
  --header 'Authorization: Bearer <token>'
{
  "clicks": 51,
  "uniqueVisitorCount": 22,
  "chartdata": [
    {
      "date": "Jun 01",
      "Unique_visitors": 9,
      "Page_views": 12,
      "newVisitors": 9,
      "returnVisitors": 3
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

url
string
required

Query Parameters

documentId
string
startDate
string
endDate
string

Response

200
application/json
Successfully retrieved workspace clicks and analytics data
clicks
integer
Example:

51

uniqueVisitorCount
integer
Example:

22

chartdata
object[]