interface GetMembersByQueryParam {
    limit?: number;
    name: string;
    shouldReturnTotalSize?: boolean;
    start?: number;
}

Properties

limit?: number

The maximum number of users to return per page. Note, this is restricted by fixed system limit of 200 which is to say if the limit parameter exceeds 200, this API will return a maximum of 200 users per page.

name: string

The name of the group to be queried for its members.

shouldReturnTotalSize?: boolean

Whether to include total size parameter in the results. Note, fetching total size property is an expensive operation; use it if your use case needs this value.

start?: number

The starting index of the returned users.

Generated using TypeDoc v0.25.12