as title, do you have an example to help understand the API
like curl command example
thanks,
Hi,
Here is what you need:
curl --request PUT
-H "Authorization: Basic ZnJlZDpmcmVk" \
--url 'https://your-domain.atlassian.net/rest/api/2/issue/{issueIdOrKey}' \
--header 'Content-Type: application/json' \
--data '{
"fields": {
"summary": "This is a shorthand for a set operation on the summary field",
"customfield_10010": 1,
"customfield_10000": "This is a shorthand for a set operation on a text custom field"
}
}'
The documentation is here.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.