(deprecated) HTTP tracking API source 1.0
Deprecated
You are looking to the old version of the API (version 1.0) Commanders Act will end support and maintenance for HTTP tracking API source 1.0 on August 31, 2023. This API will be fully deprecated on December 2023. After this date, the current format will no longer be supported and any requests using it may generates error.
We encourage you to begin using the new payload format as soon as possible to ensure a smooth transition. The new format is described here. Please refer to our documentation for more information on how to use the new format.
What changed in the payload format from the 1.0 to the 2.0 version :
All event data were inside the
properties
object. They are now at the root. Theproperties
object doesn't exist any more.All contextual meta-data were at the root, they are now inside a new
context
object. For example these meta-data obectsevent_id
,device
,page
,app
,event_timestamp
are now in thecontext
object.
The HTTP Tracking API 1.0 lets you record data from any website or application. Requests are routed to our servers, and your data is routed to any destination you desire.
Setup
Headers
Authentication
Authenticate to the Tracking API by sending your project’s Source Key along with a request in the headers like so: Authorization: Bearer NJtcKaoCYu...mGZDxRgMBMUw==
The source key is provided to you when you create a source in the source catalogue
Content-Type
To send data to our HTTP API, a content-type header must be set to 'application/json'
.
Errors
We presently return a 200 response for all API requests, thus debugging should be done using the platform interface or our config API (event inspector or event delivery API). The sole exception is that if the request is too large or the JSON is invalid, it will return a 400.
Max Request Size
There is a maximum of 32KB
per API request.
Rate limit
There is no real rate limit above which the system will discard your data. But if you need to import at a rate faster than 500 requests per second, please contact us beforehand.
Event API
You may use the event API to capture the actions that your users perform. Every action results in what is known as an "event," which have associated properties.
You should keep track of activities that are indications of your app's performance, such as Signed Up, Item Purchased, and Article Bookmarked. To begin, we recommend tracking only a few key events. More may easily be added later!
Example event
call: ()
Find details on best practices in event naming as well as the event
method payload in our Spec.
If you want to use Http tracking API from you mobile APP instead of SDK, look at the Mobile event specificity
Timestamps supported are in milliseconds (ms).
Last updated