The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Is there any API's to pull the story points count from the Jira?

Nisarga.lokesh
July 25, 2019

Am writing a java code using jira-rest-api to customise the jira. But am not getting how to pull the story points for each project.

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Lady Di
Atlassian Partner
July 25, 2019

If you are writing a code as part of a jira plugin - Better use Jira java api:

https://developer.atlassian.com/server/jira/platform/java-apis/

issue.setCustomFieldValue(StoryPoints) //set

issue.getCustomFieldValue(StoryPoints) //get

If we are talking about an external application, here is the description of the documentation for the REST API

https://developer.atlassian.com/server/jira/platform/updating-an-issue-via-the-jira-rest-apis-6848604/