Group - Adds users to a group

Performs a bulk operation to add multiple users to a designated group.

post
Authorizations
Path parameters
tenantIdstring · uuidRequired

Enter the ID of the tenant under which users will be added to the group.

groupIdstring · uuidRequired

Enter the ID of the group to which users will be added.

Query parameters
versionstringOptional

The requested API version

Default: 1.0
Body
string · uuid[]Optional
Responses
200
Success: Addition acknowledgment received.
post
POST /tenants/{tenantId}/groups/{groupId}/users HTTP/1.1
Host: 
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 40

[
  "123e4567-e89b-12d3-a456-426614174000"
]
{
  "status": "Success",
  "successCount": 1,
  "error": {
    "message": "text",
    "unsuccessfulUsers": [
      "123e4567-e89b-12d3-a456-426614174000"
    ]
  }
}

Last updated