Dear,
Can I complete fields of a ticket already opened in JS via REST API? Which one should I use?
Thank you very much for your help
King regards
Dear,
Can I complete fields of a ticket already opened in JS via REST API? Which one should I use?
Thank you very much for your help
King regards
Welcome to the Atlassian developer community, @RomanRodriguez.
The first thing to understand is how most of the common capabilities of Jira are in the “platform” layer of the REST APIs. The REST API specific to Jira Software provides access to concepts that are only found in that product, like boards and sprints.
If you only need to update fields on an issue, then you’ll find that here (you may want to URL hack what resolves from the URL below to match your specific version of Jira):
https://docs.atlassian.com/software/jira/docs/api/REST/latest/
And most of what you want to do is explained in PUT /rest/api/2/issue/{issueIdOrKey} for edit issue:
https://docs.atlassian.com/software/jira/docs/api/REST/latest/#api/2/issue-editIssue
Hi, It’s exactly what I need to do. Thank you very much for your help