Skip to main content
POST
/
analytics
/
identify
Identify a user
curl --request POST \
  --url https://console.cloud.timescale.com/public/api/v1/analytics/identify \
  --header 'Content-Type: application/json' \
  --data '{
  "properties": {
    "email": "user@example.com",
    "name": "John Doe"
  }
}'
{
  "status": "success"
}

Body

application/json
properties
object

Optional map of arbitrary properties associated with the user

Example:
{
"email": "user@example.com",
"name": "John Doe"
}

Response

Analytics action completed successfully.

status
string

Status of the analytics operation

Example:

"success"