Skip to main content
POST
/
analytics
/
track
Track an analytics event
curl --request POST \
  --url https://console.cloud.timescale.com/public/api/v1/analytics/track \
  --header 'Content-Type: application/json' \
  --data '{
  "event": "service_created",
  "properties": {
    "region": "us-east-1"
  }
}'
{
  "status": "success"
}

Body

application/json
event
string
required

The name of the event to track

Example:

"service_created"

properties
object

Optional map of arbitrary properties associated with the event

Example:
{ "region": "us-east-1" }

Response

Analytics action completed successfully.

status
string

Status of the analytics operation

Example:

"success"