Skip to main content
GET
/
v1
/
analytics
/
visitors
List identified visitors
curl --request GET \
  --url https://api.scribe-mail.com/v1/analytics/visitors \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "distinct_id": "<string>",
      "traits": {},
      "first_seen_at": "2023-11-07T05:31:56Z",
      "last_seen_at": "2023-11-07T05:31:56Z",
      "first_touch": {
        "click_id": "<string>",
        "teammate_id": "<string>",
        "signature_template_id": "<string>",
        "email_id": "<string>"
      },
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "page": 123,
    "limit": 123,
    "total_count": 123,
    "total_pages": 123,
    "has_more": true
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

page
integer
limit
integer

Response

Success

data
object[]
required
pagination
object
required

Offset (page/limit) pagination. The single pagination shape returned by every paginated list endpoint in the public API.