Jira

Configuration

Jira source connector integrates with the Jira REST API to extract project management data.

Connects to your Jira Cloud instance.

It provides comprehensive access to projects, issues, and their relationships for agile development and issue tracking workflows.

Source Code: View on GitHub

Authentication

This connector uses OAuth 2.0 authentication. You can connect through the Graffo UI or API using the OAuth flow.

Supported authentication methods:

  • OAuth Browser Flow (recommended for UI)

  • OAuth Token (for programmatic access)

  • Auth Provider (enterprise SSO)

Configuration Options

The following configuration options are available for this connector:

Data Models

The following data models are available for this connector:

JiraProjectEntity

Schema for a Jira Project.

Reference: https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-projects/

Field
Type
Description

project_id

str

Unique numeric identifier for the project.

project_name

str

Display name of the project.

project_key

str

Unique key of the project (e.g., 'PROJ').

description

Optional[str]

Description of the project.

web_url_value

Optional[str]

Link to the project in Jira.

JiraIssueEntity

Schema for a Jira Issue.

Reference: https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issues/

Field
Type
Description

issue_id

str

Unique identifier for the issue.

issue_key

str

Jira key for the issue (e.g. 'PROJ-123').

summary

str

Short summary field of the issue.

description

Optional[str]

Detailed description of the issue.

status

Optional[str]

Current workflow status of the issue.

issue_type

Optional[str]

Type of the issue (bug, task, story, etc.).

project_key

str

Key of the project that owns this issue.

created_time

datetime

Timestamp when the issue was created.

updated_time

datetime

Timestamp when the issue was last updated.

web_url_value

Optional[str]

Link to the issue in Jira.

Last updated