Jira Connector Actions :
Get Issues:
API Name: Get Issues
Description: Returns all issues. Different organizations use Jira to track different
kinds of issues, which can represent anything from a software bug, to a
project task, or a leave request form. Issues are the building blocks of
any Jira project. An issue could represent a story, a bug, a task, or
another issue type in your project.
Create Issues With Payload:
API Name: Create Issues With Payload
Description: Create issue with full payload.
Payload (JSON Format):
e.g:
{
"update": {},
"fields": {
"summary": "Main order flow broken",
"parent": {
"key": "PROJ-123"
},
"issuetype": {
"id": "10000"
},
"components": [
{
"id": "10000"
}
],
"customfield_20000": "06/Jul/19 3:25 PM",
"customfield_40000": {
"type": "doc",
"version": 1,
"content": [
{
"type": "paragraph",
"content": [
{
"text": "Occurs on all orders",
"type": "text"
}
]
}
]
},
"customfield_70000": [
"jira-administrators",
"jira-software-users"
],
"project": {
"id": "10000"
},
"description": {
"type": "doc",
"version": 1,
"content": [
{
"type": "paragraph",
"content": [
{
"text": "Order entry fails when selecting supplier.",
"type": "text"
}
]
}
]
},
"reporter": {
"id": "5b10a2844c20165700ede21g"
},
"fixVersions": [
{
"id": "10001"
}
],
"customfield_10000": "09/Jun/19",
"priority": {
"id": "20000"
},
"labels": [
"bugfix",
"blitz_test"
],
"timetracking": {
"remainingEstimate": "5",
"originalEstimate": "10"
},
"customfield_30000": [
"10000",
"10002"
],
"customfield_80000": {
"value": "red"
},
"security": {
"id": "10000"
},
"environment": {
"type": "doc",
"version": 1,
"content": [
{
"type": "paragraph",
"content": [
{
"text": "UAT",
"type": "text"
}
]
}
]
},
"versions": [
{
"id": "10000"
}
],
"duedate": "2019-05-11",
"customfield_60000": "jira-software-users",
"customfield_50000": {
"type": "doc",
"version": 1,
"content": [
{
"type": "paragraph",
"content": [
{
"text": "Could impact day-to-day work.",
"type": "text"
}
]
}
]
},
"assignee": {
"id": "5b109f2e9729b51b54dc274d"
}
}
}
Create Issues With Summary:
API Name: Create Issues With Summary
Description: Create issue with only important or summarized fields.
Payload (JSON Format):
e.g:
{
"project_key": "TES",
"issue_type": "Task",
"issue_heading": "Dummy",
"content_type": "text",
"content_text": "Ticket description"
}
Add Comment:
API Name: Add Comment
Description: Adds a comment to an issue.
Payload (JSON Format):
e.g:
{
"issue_key": "TES-13",
"comment_type": "text",
"comment_description": "New Comment"
}
Search Issues:
API Name: Search Issues
Description: Search issues using Jira Query Language (JQL).
Payload (JSON Format):
e.g:
{ "query": "test" }
Get Issue Type:
API Name: Get Issue Type
Description: Returns all issue types for user.
Get Labels:
API Name: Get Labels
Description: Returns available labels for the global label field.