Create a Compliance User Group
Creates a compliance user group. Released in 1.55.3
Header parameters
sessionTokenstringRequired
Session authentication token.
Body
Body for group creation
namestringRequired
Group name
areastringOptional
Group area
descriptionstringOptional
Group description
typestringRequired
Group type
Responses
201
Success
application/json
400
Client error, see response body for further details.
application/json
401
Unauthorized: Session tokens invalid.
application/json
403
Forbidden: Caller lacks necessary entitlement.
application/json
500
Server error, see response body for further details.
application/json
post
POST /pod/v2/admin/usergroups HTTP/1.1
Host: yourpodURL.symphony.com
sessionToken: text
Content-Type: application/json
Accept: */*
Content-Length: 64
{
"name": "text",
"area": "text",
"description": "text",
"type": "text"
}
{
"id": "text",
"name": "text",
"area": "text",
"description": "text",
"type": "text",
"active": true,
"createdDate": 1,
"modifiedDate": 1,
"memberCount": 1,
"assigneeCount": 1
}
🚧 Roles and PrivilegesCalling this endpoint requires the Scope Management role with the MANAGE_ROLE_SCOPES entitleable action. See Bot Permissions for a list of roles and associated privileges.
Last updated
Was this helpful?