Hi,
I'm trying to update issue summary field via REST API (JIRA DC 8.22).
However, it doesn't seems to work. followed curl code:
curl -X PUT \
https://1.1.1.1/rest/api/2/issue/MAINT-12345 \
-H 'Authorization: Basic XXXXXXX' \
-H 'Cache-Control: no-cache' \
-H 'Postman-Token: XX_XX_XX' \
-H 'data: {"update": {"summary": [{"set" : "Big block Chevy"}]}}'
Kindly,
Gilad
Hi @Gilad Shtern Kindly check the Atlassian Doc for Editing an issue :- https://developer.atlassian.com/server/jira/platform/jira-rest-api-example-edit-issues-6291632/
curl --location --request PUT 'https://jira.abc.com/rest/api/2/issue/VTPC-1' \
--header 'Authorization: Basic eXZpa3JhbnQ6ViFoYW5AMjgyMDIy' \
--header 'Content-Type: application/json' \
--data-raw '{ "fields": {
"summary": "Update Summary",
"description": "desc1"
}
}'
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.