> ## Documentation Index
> Fetch the complete documentation index at: https://docs.useparagon.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Jira

## Required Scopes

To configure a Sync for Jira, you need to request the following scopes from your Jira OAuth application:

**Tickets:**

* `offline_access`
* `read:jira-user`
* `read:jira-work`

Learn more about configuring scopes for your app in [Adding Integrations](/getting-started/adding-an-integration#create-a-developer-app).

## Synced Objects

Jira supports the following Synced Objects:

* [Tickets](/managed-sync/api/ticket-schema): Syncs issues from Jira, including issue metadata, comments, and attachments.

## Tickets

Send a request to [Enable Sync](/managed-sync/api/enable-a-sync) to start a ticket sync. Jira syncs issues from both **Jira Software** and **Jira Service Management** projects.

```json Example theme={null}
{
    "integration": "jira",
    "pipeline": "tickets",
    "configuration": {
      "projectId": "10001"
    }
}
```

**Configuration options:**

<ParamField path="projectId" type="string" required>
  The Jira project ID (in numeric format, not the project key) to sync tickets from. You can prompt your users to select a project from Connect Portal [User Settings](/connect-portal/workflow-user-settings).
</ParamField>
