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 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "properties": {
    "email": "user@example.com",
    "name": "John Doe"
  }
}
'
{
  "status": "success"
}

Authorizations

Authorization
string
header
required

HTTP Basic Authentication using your Tiger Cloud public key and secret key.

Format: Authorization: Basic <base64(public_key:secret_key)>

Example:

curl -X GET "https://console.cloud.timescale.com/public/api/v1/projects/{project_id}/services" \
-H "Authorization: Basic $(echo -n 'your_public_key:your_secret_key' | base64)"

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"