Function find_bulk_assignable_users

Source
pub async fn find_bulk_assignable_users(
    configuration: &Configuration,
    project_keys: &str,
    query: Option<&str>,
    username: Option<&str>,
    account_id: Option<&str>,
    start_at: Option<i32>,
    max_results: Option<i32>,
) -> Result<Vec<User>, Error<FindBulkAssignableUsersError>>
Expand description

Returns a list of users who can be assigned issues in one or more projects. The list may be restricted to users whose attributes match a string. This operation takes the users in the range defined by startAt and maxResults, up to the thousandth user, and then returns only the users from that range that can be assigned issues in the projects. This means the operation usually returns fewer users than specified in maxResults. To get all the users who can be assigned issues in the projects, use Get all users and filter the records in your code. This operation can be accessed anonymously. Permissions required: None.