This returns results , but i need these fields
https://XXXX.atlassian.net/rest/api/3/search?jql=project=FBDVQS
Issue Type
Issue key
Issue id
Summary
Status
Reporter
Created
Custom field (Start Date)
Custom field (End Date)
Project Category
Resolved
Due date
Custom field (Tech Impact)
Custom field (Requesting Business Area)
Custom field (Request Category)
Custom field (Func Pri)
Custom field (RT Priority)
Custom field (CAP Priority)
Custom field (Linked Project)
Hey @Yusuf Rawat ,
You should use fields parameter in your Rest
https://XXXX.atlassian.net/rest/api/3/search?jql=project=FBDVQS&fields=issuetype,summary,status,created...
You can't use the customfield name, you will use the customfield_ID instead. Imagine that Tech Impact is customfield_10510, then your request will be :
https://XXXX.atlassian.net/rest/api/3/search?jql=project=FBDVQS&fields=issuetype,summary,status,created,customfield_10510...
You can check the documentation here: https://developer.atlassian.com/cloud/jira/platform/rest/v3/#api-rest-api-3-search-get
How do I mark your answer as correct
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Great that it worked, you should have a green button "Accept answer" near my first comment
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.