Hi Team,
I wanted to just update Story Point using the issue id, I tried the below request
URL - https://subdomain.atlassian.net/rest/api/3/issue/<Issue ID or Key>
Method: PUT
Body:
Welcome to the Atlassian Community!!
First, get the issue ID from the GET request
Next for the sprint, you need to have the custom field ID as in this case my site's custom field was customfield_10020
You need to make the PUT call to update the sprint
curl -i --request PUT \
--url 'https://yoursite.atlassian.net/rest/api/3/issue/WSP-128' \
--user 'email:token' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{ "fields": { "customfield_10020": 3 } }'
Thanks,
Pramodh
Hi Pramodh - Thanks for the reply.
I tried, but getting below error -
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.