curl--location--request POST 'http://jira.local:8080/jira/rest//rest/api/3/resolution' \
--header'Content-Type: application/json' \
--data-raw'{
"description": "My resolution description",
"name": "My new resolution"
}'
Response Response Example
201 - Success
{"id":"10001"}
Request
Body Params application/json
Details of an issue resolution.
description
stringÂ
write-onlyoptional
The description of the resolution.
<= 255 characters
name
stringÂ
write-onlyrequired
The name of the resolution. Must be unique (case-insensitive).
<= 60 characters
Additional properties
integer  | number  | string  | booleanÂ
optional
Examples
Responses
🟢201Returned if the request is successful.
application/json
Body
The ID of an issue resolution.
id
stringÂ
read-onlyrequired
The ID of the issue resolution.
Additional properties
integer  | number  | string  | booleanÂ
optional
🟠400Returned if the request isn't valid.
🟠401Returned if the authentication credentials are incorrect or missing.
🟠403Returned if the user doesn't have the necessary permission.