Organization Group
List organization group users
Get users for an organization group object. Returned objects contain subset of user 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}/users
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.
Response
OK
Example response
{
"results": [
{
"id": 123456,
"url": "https://example.rossum.app/api/v1/organization_groups/42/users/123456",
"email": "john-doe@east-west-trading.com",
"username": "JohnDoe",
"organization": "https://example.rossum.app/api/v1/organization_groups/42/organizations/321"
}
]
}Changes
No recorded changes to this endpoint across all 1 revision of this API.