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

    Interface FindAssignableUsers

    interface FindAssignableUsers {
        accountId?: string;
        actionDescriptorId?: number;
        issueId?: string;
        issueKey?: string;
        maxResults?: number;
        project?: string;
        query?: string;
        recommend?: boolean;
        sessionId?: string;
        startAt?: number;
        username?: string;
    }
    Index

    Properties

    accountId?: string

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

    actionDescriptorId?: number

    The ID of the transition.

    issueId?: string

    The ID of the issue. Required, unless issueKey or project is specified.

    issueKey?: string

    The key of the issue. Required, unless issueId or project is specified.

    maxResults?: number

    The maximum number of items to return. This operation may return less than the maximum number of items even if more are available. The operation fetches users up to the maximum and then, from the fetched users, returns only the users that can be assigned to the issue.

    project?: string

    The project ID or project key (case sensitive). Required, unless issueKey or issueId is specified.

    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 username or accountId is specified.

    recommend?: boolean
    sessionId?: string

    The sessionId of this request. SessionId is the same until the assignee is set.

    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.