We've been using '/rest/api/3/search/jql' to extract data on Azure Synapse Spark Notebook.
From 1st of May, it started to return empty data, and it worked perfectly well until the day before. Has anything changed to affect this result?
Hi @Seung Yeon Han ,
my suggestion is first of all to verify your jql function using browser UI in order to verify that results are fetched.
Hope this helps,
Fabio
Hi @Fabio Racobaldo _Catworkx_ ,
The jql function works the same in the browser UI, and nothing has been changed on the filter that i am using in my JQL.
Here's my code :
url = authed_jira._options['server'] + '/rest/api/3/search/jql'headers = {"Accept": "application/json","Content-Type": "application/json"}payload = {"jql": 'filter=10342',# "fields": ["key","project","issuelinks"],"maxResults": 100}response = authed_jira._session.post(url, headers=headers, data=json.dumps(payload))result = response.json()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey @Seung Yeon Han
Good day!
There have been no changes to the API endpoint. I'd suggest reviewing your JQL query, are there any date related clauses that may point to the end of April?
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.