We are trying to get a number of the case being logged (Service Request/Incident/Problem combined) in Service Desk via API. Something like this BUT not sure on how to do this GET on rest/api/3/search?jql=filter=123 etc etc
We manage to access the basic information via CURL:
curl D -u "XXX@XXXXcorp.com:APITOKEN" -X GET -H "Content-Type: application/json" "https://xxx.atlassian.net/rest/api/3/issue/DCHC01-6330"
Any input will be good.
Thank you
Hi Valdy,
You could use something like the following JQL to get everything created today in your project:
project = Project_Name and created >= startOfDay()
then use the API results you noted "GET on rest/api/3/search?jql=filter=123 etc etc" there will be a total attribute that contains a count on the issues returned by the filter, EXE from my test instance in the expand section:
{
"startAt": 0,
"maxResults": 50,
"total": 1,
"issues": []
}
So that filter contains 1 issue created today. The key is to narrow the filter result to return only the values you are looking to get a count on, and some additional details on JQL formatting can be found in This Documentation, and full break down on startoday() can be seen HERE
Regards,
Earl
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.