Carillon docs
Users

Merge shared user tags, creating the profile if needed

PATCH
/v1/users/{externalId}/tags
AuthorizationBearer <token>

An API key, sent as Authorization: Bearer carillon_sk_live_…. A secret key sends, reads traces and manages devices; a mobile key may only register its own device and report that device’s events.

In: header

Path Parameters

externalId*string
Length1 <= length <= 256

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/problem+json

application/problem+json

curl -X PATCH "https://example.com/v1/users/string/tags" \  -H "Content-Type: application/json" \  -d '{    "tags": {      "property1": "string",      "property2": "string"    }  }'
{  "external_id": "string",  "tags": {    "property1": "string",    "property2": "string"  }}