Category / Section
How to retrieve required Fields in Bold BI JIRA connector?
Published:
Retrieving Required Fields in JIRA Connector
To get the required fields in the JIRA connector, you can use a Raw Query. This method allows you to specify the fields you want to retrieve and customize the query according to your needs.
Steps to Retrieve Required Fields
-
Open the JIRA connector.
-
Replace
<:your_domain>
and<yourProject>
with your specific information in the URL and Raw data. -
If you need to include any extra fields or custom fields, simply add them to the “fields” list as needed.
-
Use the following information for the Raw Query:
- URL:
https://<:your_domain>.atlassian.net/rest/api/2/search
- Method:
POST
- Request Body:
Raw
- URL:
-
Specify the required fields in the Raw data, like below:
{
"jql": "project = <yourProject> Order by creator DESC",
"startAt": 0,
"maxResults": "100",
"validateQuery": "true",
"fields": [
"issuetype",
"versions",
"components",
"created",
"description",
"duedate",
"issuekey",
"labels",
"lastViewed",
"security",
"timeoriginalestimate",
"priority",
"project",
"timeestimate",
"reporter",
"resolution",
"resolutiondate",
"status",
"summary",
"timespent",
"updated",
"votes",
"watches"
]
}
By following these steps, you can retrieve the required fields in the JIRA connector using a Raw Query.