Skip to main content
POST
/
v1
/
ui
/
analytics
/
track
Track analytics event
curl --request POST \
  --url https://api.example.com/v1/ui/analytics/track \
  --header 'Content-Type: application/json' \
  --data '
{
  "event": "<string>",
  "properties": {},
  "userId": "<string>",
  "sessionId": "<string>"
}
'
{
  "success": true
}

Body

application/json
event
string
required
Minimum string length: 1
properties
object
required
userId
string
sessionId
string

Response

200 - application/json

Event tracked successfully

success
boolean