Constructor options for JiraClient.

interface JiraClientOptions {
    agileApiPath?: string;
    apiPath?: string;
    apiUrl: string;
    token: string;
    user: string;
}

Properties

agileApiPath?: string

The Agile (Software) REST API path used for boards and sprints.

'rest/agile/latest'

apiPath?: string

The REST API path to prepend to every core request.

'rest/api/latest'

apiUrl: string

The host URL of the Jira Data Center instance (e.g., https://jira.example.com)

token: string

The personal access token or password to authenticate with

user: string

The username to authenticate with