interface GetUsersInOrganization {
    limit?: number;
    organizationId: number;
    start?: number;
}

Properties

limit?: number

The maximum number of users to return per page. Default: 50. See the Pagination section for more details.

organizationId: number

The ID of the organization.

start?: number

The starting index of the returned objects. Base index: 0. See the Pagination section for more details.