account_upsertUserAttributeValue
WRITEUpsert user attribute value.
Parameters
userAttributeIdstringrequiredvalueanyrequiredtypestringrequireduserAttributeValueIdanyoptionalCall 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"
]
}