account_upsertUserAttributeValue

WRITE

Upsert user attribute value.

Parameters

userAttributeIdstringrequired
valueanyrequired
typestringrequired
userAttributeValueIdanyoptional

Call it

Invoke it through the call_tool meta-tool with its arguments:

call_tool
call_tool({
  "name": "account_upsertUserAttributeValue",
  "arguments": {
    "userAttributeId": "string",
    "value": "string",
    "type": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "userAttributeValueId": {},
    "userAttributeId": {
      "type": "string"
    },
    "value": {},
    "type": {
      "type": "string"
    }
  },
  "required": [
    "userAttributeId",
    "value",
    "type"
  ]
}