Organization Group
List organization group queues
Get queues for an organization group object. Returned objects contain subset of queue attributes.
<Callout type="info"> The endpoint provides read-only view for users with the `organization_group_admin` role for managing memberships. </Callout>get/api/v1/organization_groups/{organizationGroupID}/queues
Path parameters
organizationGroupIDinteger required
A unique integer value identifying organization group.
Query parameters
page_sizeinteger
Number of results per page
cursorstring
A value used for cursor-based pagination. Obtain this value from the next or previous URLs in a paginated response. Do not construct cursor values manually.
organizationinteger
Filter queues by organization
ordering'id' | '-id' | 'name' | '-name'
Result ordering.
Response
OK
Example response
{
"results": [
{
"id": 654,
"url": "https://example.rossum.app/api/v1/organization_groups/42/queues/654",
"name": "Received invoices",
"organization": "https://example.rossum.app/api/v1/organization_groups/42/organizations/321",
"workspace": "https://example.rossum.app/api/v1/organization_groups/42/workspaces/12"
}
]
}Changes
No recorded changes to this endpoint across all 1 revision of this API.