I'm experiencing an issue with my API requests where I intermittently receive the following error message: "There was an error invoking the function - [object Object]."
I'm making requests to the Jira API using the following route:
const route = `/rest/api/3/search?jql=${jqlQuery}&fields=${fields}&maxResults=${maxResults}&startAt=${startAt}`;
For example, a typical request might look like this:
/rest/api/3/search?jql=project%20%3D%2010008&fields=parent%2Cissuetype%2Cstatus%2Csummary&maxResults=10&startAt=370
jqlQuery
, fields
, maxResults
, and startAt
parameters are correctly formatted and valid.Any insights or suggestions on how to debug this issue further would be greatly appreciated. Has anyone else encountered similar issues with Jira API requests?