Skip to content

JQL query¤

Python Plugin

This operator is part of a Python Plugin Package. In order to use it, you need to install it, e.g. with cmemc.

This workflow task sends a JQL query to the REST API (v2) of a given Jira service. It is tested both with on-premise Jira deployments as well as with instances on atlassian.net.

The result of the JQL query is a list of JIRA issue descriptions (entities). This list is forwarded as a JSON document to the output port, where you should connect a JSON Dataset.

Note that you need to create an API token for your Atlassian account, to access the API of your atlassian.net hosted Jira instance.

Parameter¤

Jira Server¤

Base URL of the jira service, e.g. ‘https://jira.example.org’

  • Datatype: string
  • Default Value: None

Account¤

  • Datatype: string
  • Default Value: None

Password or Token¤

  • Datatype: password
  • Default Value: None

JQL Query¤

Warning: An empty query string retrieves all issues.

  • Datatype: string
  • Default Value: None

Limit¤

Maximum number of issues to retrieve (0 = retrieve all issues).

  • Datatype: Long
  • Default Value: 0

Verify SSL Connection¤

  • Datatype: boolean
  • Default Value: true

Connection Timeout¤

Number of seconds, the plugin will wait to establish a connection to the Jira Service.

  • Datatype: Long
  • Default Value: 300

Results per Page¤

Number of items to return per request.

  • Datatype: Long
  • Default Value: 100

Comments