Skip to main content

Update the value of a specific preference for a UserUUID


ApiScope: manage.user.write
API Scope Level: ServiceSubscriberScope
Path Parameters
    user_uuid string required
    preference string required
Request Body required
    keyName string
    value string
    promptType string
    possibleValues string
    description string
Responses

OK


Schema
    errors object[]
  • Array [
  • errorCode int32
    errorTitle string
    errorMessage string
  • ]
  • warnings object[]
  • Array [
  • warningCode int32
    warningTitle string
    warningMessage string
  • ]
  • apiRequestId string
POST /v2/user/:user_uuid/preference/:preference

Authorization

name: basicAuthtype: httpscheme: basic

Request

Base URL
/manage
Username
Password
user_uuid — path required
preference — path required
Body required
{
"keyName": "string",
"value": "string",
"promptType": "string",
"possibleValues": "string",
"description": "string"
}
Accept
curl / cURL
curl -L -X POST '/manage/v2/user/:user_uuid/preference/:preference' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"keyName": "string",
"value": "string",
"promptType": "string",
"possibleValues": "string",
"description": "string"
}'