Confluence.js - Cloud and Server API library
    Preparing search index...

    Interface GetGroupMembersByGroupId

    interface GetGroupMembersByGroupId {
        groupId: string;
        limit?: number;
        shouldReturnTotalSize?: boolean;
        start?: number;
    }
    Index

    Properties

    groupId: string

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

    limit?: number

    The maximum number of users to return per page. Note, this may be restricted by fixed system limits.

    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.