Update User Features
Updates the feature entitlements for a particular user.
Path parameters
uidinteger · int64Required
User ID as a decimal integer
Header parameters
sessionTokenstringRequired
Session authentication token.
Bodyobject[]
Entitlement feature record.
entitlmentstringOptionalExample:
canCreatePublicRoomenabledbooleanOptionalExample:
Whether this entitlement is enabled for the user.
trueResponses
200
Success
application/json
400
Client error, see response body for further details.
application/json
401
Unauthorized: Invalid session token.
application/json
403
Forbidden: Caller lacks necessary entitlement.
application/json
500
Server error, see response body for further details.
application/json
post
/v1/admin/user/{uid}/features/updateRequest Example
curl -X POST \
https://acme.symphony.com/pod/v1/admin/user/7215545057281/features/update \
-H "sessionToken: SESSION_TOKEN" \
-H "Content-Type: application/json" \
-d '[
{
"entitlment": "canCreatePublicRoom",
"enabled": true
},
{
"entitlment": "isExternalRoomEnabled",
"enabled": true
},
{
"entitlment": "delegatesEnabled",
"enabled": true
},
{
"entitlment": "isExternalIMEnabled",
"enabled": true
},
{
"entitlment": "sendFilesEnabled",
"enabled": true
},
{
"entitlment": "canUpdateAvatar",
"enabled": true
}
]'
🚧 Required Permissions
Updating User Entitlements in Bulk
Last updated
Was this helpful?