# tap-jira **Repository Path**: mirrors_apollographql/tap-jira ## Basic Information - **Project Name**: tap-jira - **Description**: Singer tap for extracting data from the Jira API - **Primary Language**: Unknown - **License**: AGPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-08-19 - **Last Updated**: 2025-12-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # tap-jira This is a [Singer](https://singer.io) tap that produces JSON-formatted data following the [Singer spec](https://github.com/singer-io/getting-started/blob/master/SPEC.md). This tap: - Pulls raw data from the [JIRA Cloud REST API](https://docs.atlassian.com/jira/REST/cloud/#api/2/) - Extracts the following resources: - [`projects`](https://docs.atlassian.com/jira/REST/cloud/#api/2/project-getAllProjects) - [`versions`](https://docs.atlassian.com/jira/REST/cloud/#api/2/project-getProjectVersionsPaginated) - [`project_types`](https://docs.atlassian.com/jira/REST/cloud/#api/2/project/type-getAllProjectTypes) - [`project_categories`](https://docs.atlassian.com/jira/REST/cloud/#api/2/projectCategory-getAllProjectCategories) - [`resolutions`](https://docs.atlassian.com/jira/REST/cloud/#api/2/resolution-getResolutions) - [`roles`](https://docs.atlassian.com/jira/REST/cloud/#api/2/role-getProjectRoles) - [`users`](https://docs.atlassian.com/jira/REST/cloud/#api/2/user-findUsers) - [`issues`](https://docs.atlassian.com/jira/REST/cloud/#api/2/search-search) - [`issue_comments`](https://docs.atlassian.com/jira/REST/cloud/#api/2/search-search) - [`issue_transitions`](https://docs.atlassian.com/jira/REST/cloud/#api/2/search-search) - [`worklogs`](https://docs.atlassian.com/jira/REST/cloud/#api/2/worklog-getWorklogsForIds) - Outputs the schema for each resource - Incrementally pulls data based on the input state ## Quick Start 1. Install ``` pip install . ``` 2. Create the config file Create a JSON file called `config.json`. Its contents should look like (for Basic Auth): ```json { "start_date": "2010-01-01", "username": "your-jira-username", "password": "your-jira-password", "base_url": "https://your-jira-domain", "user_agent": "" } ``` or (for OAuth): ```json { "oauth_client_secret": "", "user_agent": "", "oauth_client_id": "", "access_token": "", "cloud_id": "", "refresh_token": "", "start_date": "" } ``` The `start_date` specifies the date at which the tap will begin pulling data (for those resources that support this). For Basic Auth, the `base_url` is the URL where your Jira installation can be found. For example, it might look like: `https://mycompany.atlassian.net`. 4. Run the Tap in Discovery Mode ``` tap-jira -c config.json -d ``` See the Singer docs on discovery mode [here](https://github.com/singer-io/getting-started/blob/master/docs/DISCOVERY_MODE.md#discovery-mode). 5. Run the Tap in Sync Mode ``` tap-jira -c config.json -p catalog-file.json ``` --- Copyright © 2017 Stitch