Body for POST /rest/api/latest/search.

interface SearchPostParams {
    expand?: string[];
    fields?: string[];
    jql?: string;
    maxResults?: number;
    startAt?: number;
    validateQuery?: boolean;
}

Properties

expand?: string[]

Fields to expand (e.g. ['changelog', 'names'])

fields?: string[]

Issue fields to include in the response

jql?: string

JQL query string

maxResults?: number

Maximum number of results to return. Use 0 for count-only searches.

startAt?: number

Index of the first result (0-based)

validateQuery?: boolean

Whether Jira should validate the JQL query.