Skip to main content

Jira

This connector captures data from Jira's REST API into Flow collections.

It is available for use in the Flow web application. For local development or open-source workflows, ghcr.io/estuary/source-jira-native:dev provides the latest version of the connector as a Docker image. You can also follow the link in your browser to see past image versions.

Supported data resources

The following data resources are supported through the Jira APIs:

By default, each resource is mapped to a Flow collection through a separate binding.

Experimental streams

These resources are not documented by Jira and must specifically be enabled in the connector configuration.

  • Pull Requests (GitHub pull requests linked to issues)

Prerequisites

Configuration

You configure connectors either in the Flow web app, or by directly editing the catalog specification file. See connectors to learn more about using connectors. The values and specification sample below provide configuration details specific to the Jira source connector.

Properties

Endpoint

PropertyTitleDescriptionTypeRequired/Default
/api_tokenAPI TokenJira API Token is used for Authorization to your account by BasicAuth.stringRequired
/domainDomainThe Domain for your Jira account, e.g. estuary.atlassian.net, estuary.jira.com, jira.your-domain.comstringRequired
/emailEmailThe user email for your Jira account which you used to generate the API token. This field is used for Authorization to your account by BasicAuth.stringRequired
/projectsProjectsList of Jira project keys to replicate data for. Leave it empty to replicate data for all projects.string[]
/start_dateStart DateUTC date-time in the format YYYY-MM-DDT00:00:00Z. Data generated before this date will not be replicated. Note that this field only applies to certain streams.string
/lookback_window_minutesLookback WindowWhen set to N, the connector will always refresh resources created within the past N minutes.integer0
/enable_experimental_streamsEnable Experimental StreamsAllow the use of experimental streams which rely on undocumented Jira API endpoints. See experimental streams above.booleanfalse
/expand_issue_changelogExpand Issue Changelog(Deprecated) Expand the changelog when replicating issues. See issues_stream_expand_with for a newer implementation.booleanfalse
/render_fieldsRender Issue Fields(Deprecated) Render issue fields in HTML format in addition to Jira JSON-like format. See issues_stream_expand_with for a newer implementation.booleanfalse
/expand_issue_transitionExpand Issue Transitions(Deprecated) Expand the transitions when replicating issues. See issues_stream_expand_with for a newer implementation.booleanfalse
/issues_stream_expand_withExpand Issues StreamArray that compiles issue expansion options. The array can include these enum values: renderedFields, transitions, changelog.string[][]

Bindings

PropertyTitleDescriptionTypeRequired/Default
/streamStreamResource of your Jira project from which collections are captured.stringRequired
/syncModeSync ModeConnection method.stringRequired

Sample


captures:
${PREFIX}/${CAPTURE_NAME}:
endpoint:
connector:
image: ghcr.io/estuary/source-jira-native:dev
config:
api_token: <token>
domain: <domain>
email: <email>
start_date: 2025-01-01T00:00:00Z
lookback_window_minutes: 60
enable_experimental_streams: false
issues_stream_expand_with:
- renderedFields
- transitions
bindings:
- resource:
stream: issues
syncMode: incremental
target: ${PREFIX}/issues
{...}