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>"
]
}
}
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>"
]
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Information of a users to be updated.
The body is of type object
.
Users configuration
The response is of type object
.