hand-back-point-upUser Interaction Tracking

Track user interactions

POST /track

To track user interactions made with the screen content, you can use the /track POST endpoint with the specified headers and body format. This will allow you to log events such as clicks, along with any additional parameters that may be relevant.

Headers

Name
Value

Content-Type

application/json

Body

Name
Type
Description

event

str

Type of interaction, i.e.: "click"

event_value

str

e.g.: "button_3"

extra

JSON

Additional parameters (optional)

Response

{
  "message": "OK"
}

Last updated