5 min readUpdated Mar 2, 2026

Jira Integration Documentation

Overview

The Jira Integration for Vantage provides seamless connectivity with Jira's REST API v3, enabling users to manage and manipulate Jira issues, projects, and user authentication easily. This integration leverages OAuth 2.0 for secure authentication and allows for operations such as fetching accessible projects, creating and updating issues, and executing complex searches using Jira Query Language (JQL).

Settings

The Jira Integration comes with a variety of settings to configure its behavior and interactions with the Jira API. Each setting is explained in detail below.

1. encryptedRecord

2. serviceId

3. clientId

4. credentialId

5. accessToken

6. tokenExpiry

7. cloudId

8. retryAfter

How It Works

The Jira Integration processes interactions with Jira through the following main functions:

  1. Authentication: It uses OAuth 2.0 for authentication, managing access and refresh tokens as required.
  2. Cloud ID Resolution: It resolves the Jira Cloud ID needed to construct subsequent API requests by querying the "accessible-resources" endpoint after obtaining the access token.
  3. API Requests: All requests are authorized with the current access token. If the token is expired or not valid, the system will attempt to refresh it.
  4. Error Handling: The integration implements error handling for various HTTP statuses, including retries on rate limiting (HTTP 429) and token expiration (HTTP 401) using appropriate fallback processes.

Data Expectations

The Jira Integration expects various data formats depending on the API endpoints being interacted with:

Use Cases & Examples

Use Cases

  1. Automated Bug Tracking: An organization can automate the creation and updating of bug tickets in Jira based on the results of automated testing or continuous integration.
  2. Project Management: Users can integrate their project management tools with Jira to keep track of task assignments and overall project statuses.
  3. Data Visualization: Data professionals can pull issue data from Jira into Vantage for analysis, enabling visualization of issue trends and project timelines.

Example Configuration

Use Case: Automated Bug Reporting

Imaging a software development team utilizes Vantage to automatically report bugs discovered during automated testing. Here’s how the integration might be configured:

json
{
  "encryptedRecord": {
    "accessToken": "sample_access_token",
    "refreshToken": "sample_refresh_token",
    "cloudId": null,
    "tokenExpiry": null
  },
  "serviceId": "jira_service_001",
  "clientId": "your_client_id_here",
  "credentialId": "credential_123456"
}

In this scenario, the integration initializes with the necessary credentials and sets up the environment to make API calls. When a bug is discovered, a function calling createIssue would transform the test results into a Jira issue like this:

javascript
await jiraIntegration.createIssue({
    projectKey: 'DEV',
    issueType: 'Bug',
    summary: 'Automated Test Failure in Feature X',
    description: 'Automated tests for Feature X failed due to ...',
    priority: 'High',
    labels: ['automation', 'bug', 'testing'],
    assigneeAccountId: 'jira_account_id_of_dev'
});

This configuration allows the team to dynamically report issues as they arise, integrating seamlessly with their existing Jira setup.

AI Integrations

Currently, the Jira Integration does not have direct AI functionalities; however, it can be extended to interact with AI models for predictive maintenance, trend analysis, and ticket classification if required in the future.

Billing Impacts

The use of the Jira Integration may result in API request costs depending on your Jira subscription plan. Organizations should review their plan with Atlassian to understand API limits and associated costs, especially if a high volume of requests is anticipated. Additionally, performance impacts related to token management may affect system resource utilization, which could have billing implications in the context of usage within Vantage.