List all organization user groups

Returns a list of organization user groups. The organization user groups are returned sorted by creation date in ascending order.

GET/v3/organizations/{organizationId}/user-groups
JWT
organization:userGroup:read

Parameters

NameTypeInDescription
organizationId*stringpath
pageintegerqueryThe page number.
limitintegerqueryThe number of records per page. Must be a number between 1 and 100.
sortstringqueryThe sort string to sort the returned records e.g. "-createdAt"
nameobjectqueryName of the organization
searchstringquerySearch string.
idobjectqueryID of the resource.
createdAtobjectqueryDate of creation
updatedAtobjectqueryDate of last update

Responses

200 OK
[
  {
    "id": "string",
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z",
    "name": "string",
    "description": "string",
    "totalUsers": 0
  }
]