Query parameters for GET /rest/api/latest/search.

interface SearchParams {
    expand?: string;
    fields?: string;
    jql?: string;
    maxResults?: number;
    startAt?: number;
    validateQuery?: boolean;
}

Properties

expand?: string

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

fields?: string

Comma-separated list of fields to include. Use '*all' for all fields, '*navigable' for navigable fields (default).

jql?: string

JQL query string (e.g. 'project = PROJ AND status = Open ORDER BY created DESC')

maxResults?: number

Maximum number of results to return. Jira Data Center defaults to 50; the server cap is configurable.

startAt?: number

Index of the first result (0-based)

validateQuery?: boolean

Whether Jira should validate the JQL query.