v1
latestOpenAPI 3.1.02026-07-2489171167.4 KBGroups
Get list of groups
Retrieves a paginated list of groups.
get/groups
Query parameters
limitinteger
The number of records to return per page, up to 500.
offsetinteger
The offset for pagination. Calculated as (page - 1) * limit (page starts at 1).
Response
Returns a paginated list of groups.
Example response
{
"limit": 20,
"total": 50,
"data": [
{
"name": "IT Support",
"supportLevel": 3,
"companyId": 1001,
"email": "support@example.com",
"receiveAutomaticSrEmailNotifications": true,
"canBeAssignedToServiceRecord": true,
"id": 123
}
]
}