Skip to content
For LLMsView as Markdown·

Jira

Track issues, manage sprints, and organize projects with Jira.

DetailValue
CategoryProject Management
Base URLhttps://{domain}.atlassian.net
AuthenticationBearer Token
Endpoints7
Connector keyjira

Using Jira in a workflow

  1. Go to Connections and click New Connection.
  2. Pick Jira from the marketplace.
  3. Enter your credentials (see Authentication above for what's expected).
  4. In a workflow, drop an API Call node and select this connection.
  5. Pick the operation you need from the Operation dropdown — the full list is below.

Available endpoints

EndpointSummary
GET /searchSearch issues using JQL
POST /issueCreate an issue
GET /issue/{issueIdOrKey}Get an issue
PUT /issue/{issueIdOrKey}Update an issue
POST /issue/{issueIdOrKey}/transitionsTransition an issue status
GET /projectList all projects
POST /issue/{issueIdOrKey}/commentAdd a comment to an issue

Each endpoint is documented in full below. Use the outline on the right to jump to one.

Search issues using JQL

DetailValue
Operation IDpm.searchIssues
MethodGET
Path/search

Parameters

NameLocationTypeRequired
jqlquerystringYes
maxResultsqueryintegerNo

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Jira connection from the Connection dropdown.
  3. In the Operation dropdown, select pm.searchIssues.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Jira API reference.

POST /issue

Create an issue

DetailValue
Operation IDpm.createIssue
MethodPOST
Path/issue

Parameters

No parameters.

Request Body

FieldType
fieldsobject

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Jira connection from the Connection dropdown.
  3. In the Operation dropdown, select pm.createIssue.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Jira API reference.

GET /issue/{issueIdOrKey}

Get an issue

DetailValue
Operation IDpm.getIssue
MethodGET
Path/issue/{issueIdOrKey}

Parameters

NameLocationTypeRequired
issueIdOrKeypathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Jira connection from the Connection dropdown.
  3. In the Operation dropdown, select pm.getIssue.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Jira API reference.

PUT /issue/{issueIdOrKey}

Update an issue

DetailValue
Operation IDpm.updateIssue
MethodPUT
Path/issue/{issueIdOrKey}

Parameters

NameLocationTypeRequired
issueIdOrKeypathstringYes

Request Body

FieldType
fieldsobject

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Jira connection from the Connection dropdown.
  3. In the Operation dropdown, select pm.updateIssue.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Jira API reference.

POST /issue/{issueIdOrKey}/transitions

Transition an issue status

DetailValue
Operation IDpm.transitionIssue
MethodPOST
Path/issue/{issueIdOrKey}/transitions

Parameters

NameLocationTypeRequired
issueIdOrKeypathstringYes

Request Body

FieldType
transitionobject

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Jira connection from the Connection dropdown.
  3. In the Operation dropdown, select pm.transitionIssue.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Jira API reference.

GET /project

List all projects

DetailValue
Operation IDpm.listProjects
MethodGET
Path/project

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Jira connection from the Connection dropdown.
  3. In the Operation dropdown, select pm.listProjects.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Jira API reference.

POST /issue/{issueIdOrKey}/comment

Add a comment to an issue

DetailValue
Operation IDpm.addComment
MethodPOST
Path/issue/{issueIdOrKey}/comment

Parameters

NameLocationTypeRequired
issueIdOrKeypathstringYes

Request Body

FieldType
bodyobject

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Jira connection from the Connection dropdown.
  3. In the Operation dropdown, select pm.addComment.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Jira API reference.