Documentation Index

Fetch the complete documentation index at: /llms.txt

Use this file to discover all available pages before exploring further.

Skip to main content
POST
/
api
/
v1
/
user-attribute-values
Upsert user attribute value
curl --request POST \
  --url https://{tenant}.cubecloud.dev/api/v1/user-attribute-values \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "userAttributeId": "<string>",
  "userId": "<string>",
  "value": null
}
'
{
  "name": "<string>",
  "type": "string",
  "userAttributeId": 123,
  "userId": 123,
  "description": "<string>",
  "displayName": "<string>",
  "formattedValue": null,
  "value": null
}

Authorizations

Authorization
string
header
required

Token authentication. Send Authorization: Bearer <YOUR_TOKEN>.

Body

application/json

UserAttributeValueCreateInput

userAttributeId
string
required
Minimum string length: 1
userId
string
required
Minimum string length: 1
value
unknown

Response

200 - application/json
name
string
required
type
enum<string>
required
Available options:
string,
number,
boolean,
string_array,
number_array
userAttributeId
integer
required
userId
integer
required
description
string | null
displayName
string | null
formattedValue
unknown
value
unknown
Assistant
Responses are generated using AI and may contain mistakes.
Morty Proxy This is a proxified and sanitized view of the page, visit original site.