v1
latestOpenAPI 3.0.02026-07-24226294602.4 KBClient Group
Create Client Group
Creates a group with the given Clients. If any Clients are already in a group, they will be removed from their existing group and added to the new group.
post/clients/group/participants
Headers
x-api-keystring required
A valid api key. If you don't have one, please request one through the Web Integration screen.
Request body
Example request
{
"group_participants": [
{
"group_participant_client_id": 1234567891234567,
"group_role_id": 1234567891234567
}
]
}Response
Returns the Group data of the newly created Group.
Example response
{
"client_group": {
"group_id": 1234567891234567,
"group_participants": [
{
"group_participant_client_id": 1234567891234567,
"group_role_id": 1234567891234567
}
]
}
}