Jira.js - Jira Cloud API library
    Preparing search index...

    Interface FindBulkAssignableUsers

    interface FindBulkAssignableUsers {
        accountId?: string;
        maxResults?: number;
        projectKeys: string;
        query?: string;
        startAt?: number;
        username?: string;
    }
    Index

    Properties

    accountId?: string

    A query string that is matched exactly against user accountId. Required, unless query is specified.

    maxResults?: number

    The maximum number of items to return per page.

    projectKeys: string

    A list of project keys (case sensitive). This parameter accepts a comma-separated list.

    query?: string

    A query string that is matched against user attributes, such as displayName and emailAddress, to find relevant users. The string can match the prefix of the attribute's value. For example, query=john matches a user with a displayName of John Smith and a user with an emailAddress of johnson@example.com. Required, unless accountId is specified.

    startAt?: number

    The index of the first item to return in a page of results (page offset).

    username?: string

    This parameter is no longer available. See the deprecation notice for details.