PUT
/
api
/
v3
/
network-settings
/
users
Update users configuration
curl --request PUT \
  --url https://apix.us.amity.co/api/v3/network-settings/users \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "isAllowUpdateDisplayName": true,
  "fallbackRoleIds": [
    "<string>"
  ]
}'
{
  "isAllowUpdateDisplayName": true,
  "fallbackRole": {
    "enabled": false,
    "roleIds": [
      "<string>"
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Information of a users to be updated.

The body is of type object.

Response

200
application/json

Users configuration

The response is of type object.