Upsert a setting for a user
Last modified:2026-06-30 01:47:48
OperationId:CreateUserSetting
Create or update a single setting (the setting key is supplied in the body). POST and PUT both upsert on the (domain, user, setting) key.
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
or
Body Params application/jsonRequired
curl --location 'https://awqacore01.crexendocloud.com/ns-api/v2/domains//users//settings' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"setting": "dashboard.timeWindow",
"value": "string"
}'
Response Response Example
{
"code": 0,
"message": "string"
}
Modified at 2026-06-30 01:47:48