Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
gggar
Helper I
Helper I

For Jira API, I want to limit rest/api/3/search response to only fields.created = current year

Hello,

I am using this API call in Power BI:

path = "rest/api/3/search?maxResults=100&jql=",

jql_query = "issueType=Bug&fields=project,created,assignee,status,priority,reporter,creator&expand=changelog",

fields_query = "project,created,assignee,status,priority,creator,reporter",

Source_new = Json.Document(
Web.Contents(host,
[
RelativePath=path,
Query=[issueType="bug", fields=fields_query, expand="changelog"]
]
)
)

 

I want to limit the bug records returned to only bugs created this year.

 

Anyone has experience with Jira API and can give suggestions? Any help will be greatly appreciated! Thank you.

1 ACCEPTED SOLUTION
gggar
Helper I
Helper I

Hi @Anonymous thanks for the reply.

Anyway, I've solved the issue using:

createdDate>%3D'2020%2F01%2F01'


The date format need to be escaped apparently.

View solution in original post

2 REPLIES 2
gggar
Helper I
Helper I

Hi @Anonymous thanks for the reply.

Anyway, I've solved the issue using:

createdDate>%3D'2020%2F01%2F01'


The date format need to be escaped apparently.

Anonymous
Not applicable

Hi @gggar,

Any logic date fields include in your data source to remark the created date? If that is the case, you can invoke that field with the operator in 'query' options to filter records based on date values.

Advanced search reference - JQL fields | Jira Software Cloud | Atlassian Support

Advanced search reference - JQL keywords | Jira Software Cloud | Atlassian Support
Regards,

Xiaoxin Sheng

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors