Server-side Tracker
Server-side Tracking API
POST
https://api-dot-solutionsone-211314.ew.r.appspot.com/v1/track
This endpoint allows you to send tracking events from your servers to engage. Both historical events dating back the last 2 years, and new events can be sent through this endpoint.
Note. The user_id
is used to measure your tracked events against your monthly tracked visitor quota. Hence, adding a lot of events to the current or coming months may result in high charges. The datetime
parameter can be used to ensure events end up in the month intended.
Query Parameters
user_id
string
A unique customer id.
This is used to measure the monthly tracked visitor quota.
event_name
string
One of the events under TRACKED EVENTS
.
event
object
One of the event objects in TRACKED EVENTS
.
datetime
string
Check the accepted date formats below
session_id
string
An id to separate between different visits from the same user.
Headers
Authorization
string
"Bearer eyJhbGciOiJIUzI1NiIssdzNCw..." Log in to retrieve your user token.
Example call
Dates & Time
Timestamp
Accepted timestamp formats
Format
Example
YYYY-MM-DD HH:MM:SS+HH:MM
2020-01-01 04:23:01+04:00
YYYY-MM-DD HH:MM:SS.ffffff
2020-01-01 04:23:01.000384
YYYY-MM-DD HH:MM:SS
2020-01-01 04:23:01
YYYY-MM-DDTHH:MM:SS+HH:MM
2020-01-01T04:23:01+04:00
YYYY-MM-DDTHH:MM:SS.ffffff
2020-01-01T04:23:01.000384
YYYY-MM-DDTHH:MM:SS
2020-01-01T04:23:01
Generic format supported
Last updated
Was this helpful?