Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Information of a users to be updated.
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.