jira
Jira (via Apideck)
Access Jira through Apideck's Issue Tracking unified API — one of 6 Issue Tracking connectors that share the same method surface. Code you write here ports to GitHub, GitLab, Linear and 2 other Issue Tracking connectors by changing a single serviceId string. Apideck handles auth, pagination, rate limiting, and retries so you don't write per-tenant Jira plumbing.
Beta connector. Jira is currently in beta on Apideck. Expect partial resource coverage and occasional mapping gaps. Always verify coverage (see below) and fall back to the Proxy API for unsupported operations.
Quick facts
- Apideck serviceId:
jira - Unified API: Issue Tracking
- Auth type: oauth2
- Status: beta
- Gotchas: page
- Jira docs: https://developer.atlassian.com/cloud/jira/platform/rest/v3/
- Homepage: https://www.atlassian.com/software/jira
When to use this skill
Activate this skill when the user explicitly wants to work with Jira — for example, "create a ticket in Jira" or "comment on an issue in Jira". This skill teaches the agent:
- Which Apideck unified API covers Jira (Issue Tracking)
- The correct
serviceIdto pass on every call (jira) - Jira-specific auth and coverage caveats
For the full method surface (parameters, pagination, filtering), use your language SDK skill:
apideck-node,apideck-python,apideck-dotnet,apideck-java,apideck-go,apideck-php, orapideck-rest
For the raw OpenAPI spec:
- Issue Tracking: https://specs.apideck.com/issue-tracking.yml · API Explorer
Minimal example (TypeScript)
import { Apideck } from "@apideck/unify";
const apideck = new Apideck({
apiKey: process.env.APIDECK_API_KEY,
appId: process.env.APIDECK_APP_ID,
consumerId: "your-consumer-id",
});
// List tickets in Jira
const { data } = await apideck.issueTracking.tickets.list({
serviceId: "jira",
});
Portable across 6 Issue Tracking connectors
The Apideck Issue Tracking unified API exposes the same methods for every connector in its catalog. Switching from Jira to another Issue Tracking connector is a one-string change — no rewrite, no new SDK.
// Today — Jira
await apideck.issueTracking.tickets.list({ serviceId: "jira" });
// Tomorrow — same code, different connector
await apideck.issueTracking.tickets.list({ serviceId: "github" });
await apideck.issueTracking.tickets.list({ serviceId: "gitlab" });
This is the compounding advantage of using Apideck over integrating Jira directly: code against the unified Issue Tracking API once, gain access to every connector in it. New connectors Apideck adds become available to your app without code changes.
Jira via Apideck Issue Tracking
Jira Cloud is the reference Issue Tracking connector. Covers issues (tickets), projects (collections), comments, and users.
Entity mapping
| Jira concept | Apideck Issue Tracking resource |
|---|---|
| Project | collections |
| Issue | tickets |
| Comment | comments |
| User | users |
| Label | tags |
| Issue type (Story, Bug, Task) | ticket.type |
| Status (To Do, In Progress, Done) | ticket.status |
| Priority | ticket.priority |
| Assignee | ticket.assignees[] |
| Custom fields | ticket.custom_fields[] |
| Epic link, Sprint | use Proxy or custom fields |
| Worklog (time tracking) | use Proxy |
| Jira Service Desk tickets | ❌ separate auth-only connector |
Coverage highlights
- ✅ CRUD on issues across all accessible projects
- ✅ Comments (create, list, update, delete)
- ✅ Filtering by project, status, assignee, labels
- ✅ Transitioning issue status (Apideck maps to Jira's workflow transition API under the hood)
- ✅ Issue search via JQL (pass as
filter[jql]) - ⚠️ Custom fields — exposed as
custom_fields[]; write values must match Jira's expected type - ❌ Jira Service Management / Service Desk — separate product surface; use the JSM connector (auth-only in Apideck today)
- ❌ Boards, Sprints (Agile) — use Proxy with Agile REST endpoints
- ❌ Workflow configuration — use Proxy
Jira-specific auth notes
- Type: OAuth 2.0 (3LO) via Atlassian, managed by Apideck Vault
- Cloud only: this connector targets Jira Cloud. Self-hosted Jira (Data Center / Server) is a separate surface — use the Proxy API with basic auth or a PAT.
- Site selection: Atlassian accounts can have access to multiple Jira sites (cloudIds). OAuth picks one — if the user has several, confirm the right site was selected. Multi-site access = multiple connections.
Common Jira quirks handled by Apideck
- ADF (Atlassian Document Format) — Jira v3 uses ADF for rich text in
descriptionand comment bodies. Apideck accepts plain text or Markdown and transforms to ADF on write; on read, ADF is flattened to plain text inticket.description. For rich content, useraw=trueto see ADF directly. - Issue keys vs. IDs — Jira surfaces both (
PROJ-123and numeric ID). Apideck accepts either on read; writes return both. - Transitions are not status updates — in Jira, you don't PUT a status; you POST a transition. Apideck handles this:
ticket.status = "Done"triggers the right transition if one exists. - Pagination — Jira uses
startAt/maxResults. Apideck normalizes to cursor-based pagination. - Rate limits — Atlassian Cloud enforces strict per-tenant rate limits; Apideck backs off automatically on 429.
Example: create a bug with labels
Tickets in the Issue Tracking API are nested under a collection (project). See apideck-node for the canonical method signature — typically requires collectionId.
const { data } = await apideck.issueTracking.collectionTickets.create({
serviceId: "jira",
collectionId: "10001", // Jira project ID
ticket: {
title: "Login button fails on Safari",
description: "Repro: open Safari 17, click login. Nothing happens.",
type: "Bug",
priority: "High",
assignees: [{ id: "5b10a2844c20165700ede21g" }],
tags: [{ name: "safari" }, { name: "regression" }],
},
});
Example: search with JQL via Proxy
The unified Issue Tracking API supports basic filters, but complex JQL isn't exposed. Use the Proxy for full JQL:
curl 'https://unify.apideck.com/proxy' \
-H "Authorization: Bearer ${APIDECK_API_KEY}" \
-H "x-apideck-app-id: ${APIDECK_APP_ID}" \
-H "x-apideck-consumer-id: ${CONSUMER_ID}" \
-H "x-apideck-service-id: jira" \
-H "x-apideck-downstream-url: /rest/api/3/search?jql=project%20%3D%20PROJ" \
-H "x-apideck-downstream-method: GET"
Example: transition an issue status
In Jira you don't PUT a status — you POST a transition. Apideck's update with ticket.status = "Done" triggers the matching workflow transition if one exists. If the transition isn't auto-resolvable, use Proxy with /rest/api/3/issue/{id}/transitions.
await apideck.issueTracking.collectionTickets.update({
serviceId: "jira",
collectionId: "10001",
ticketId: "10042",
ticket: { status: "Done" },
});
Sibling connectors
Other Issue Tracking connectors that share this unified API surface (same method signatures, just change serviceId):
github (beta), gitlab (beta), linear (beta), gitlab-server (beta), linear-multiworkspace (beta).
See also
- Issue Tracking OpenAPI spec · API Explorer
apideck-connector-coverage— programmatic coverage checksapideck-best-practices— architecture, Vault, pagination, error handlingapideck-node— TypeScript / Node SDK patterns- Jira official docs
More from apideck-libraries/api-skills
apideck-connector-coverage
Check Apideck connector API coverage before building integrations. Use when determining which operations a connector supports, comparing connector capabilities, or diagnosing why an API call fails with a specific connector. Teaches agents to query the Connector API for real-time coverage data.
18apideck-best-practices
Best practices for building Apideck integrations. Covers authentication patterns, pagination, error handling, connection management with Vault, webhook setup, and common pitfalls. Use when designing or reviewing any Apideck integration regardless of language.
18apideck-rest
Apideck Unified REST API reference for any language. Use when building integrations with accounting software (QuickBooks, Xero, NetSuite), CRMs (Salesforce, HubSpot, Pipedrive), HRIS platforms (Workday, BambooHR), file storage (Google Drive, Dropbox, Box), ATS systems (Greenhouse, Lever), e-commerce, or any of Apideck's 200+ connectors using direct HTTP calls. Covers authentication headers, CRUD operations, cursor-based pagination, filtering, sorting, error handling, rate limiting, pass-through parameters, and webhooks. Language-agnostic — works with curl, fetch, axios, httpx, or any HTTP client.
16apideck-portman
API contract testing with Portman by Apideck. Use when generating Postman collections from OpenAPI specs, writing contract tests, variation tests, integration tests, fuzz testing, or setting up CI/CD API test pipelines. Portman converts OpenAPI 3.x specs into Postman collections with auto-generated test suites.
14apideck-node
Apideck Unified API integration patterns for TypeScript and Node.js. Use when building integrations with accounting software (QuickBooks, Xero, NetSuite), CRMs (Salesforce, HubSpot, Pipedrive), HRIS platforms (Workday, BambooHR), file storage (Google Drive, Dropbox, Box), ATS systems (Greenhouse, Lever), e-commerce, or any of Apideck's 200+ connectors. Covers the @apideck/unify SDK, authentication, CRUD operations, pagination, filtering, webhooks, and Vault connection management.
14apideck-codegen
Generate typed API clients from Apideck OpenAPI specs using code generators. Use when the user wants to generate custom SDK clients, typed models, API stubs, or server scaffolding from Apideck's published OpenAPI specifications. Covers openapi-generator, Speakeasy, and Postman import workflows.
14