Sets the value of an issue's property. Use this resource to store custom data against an issue.The value of the request body must be a valid, non-empty JSON blob. The maximum length is 32768 characters.This operation can be accessed anonymously.Permissions required:
Browse projects and Edit issuesproject permissions for the project containing the issue.
If issue-level security is configured, issue-level security permission to view the issue.
请求示例请求示例
Shell
JavaScript
Java
Swift
curl--location-g--request PUT 'http:///rest/api/3/issue//properties/' \
--header'Content-Type: application/json' \
--data-raw'null'
响应示例响应示例
200 - 示例 1
null
请求参数
Path 参数
Body 参数application/json
示例
返回响应
🟢200Returned if the issue property is updated.
application/json
Body
🟢201Returned if the issue property is created.
🟠400Returned if the request is invalid.
🟠401Returned if the authentication credentials are incorrect or missing.
🟠403Returned if the user does not have permission to edit the issue.
🟠404Returned if the issue is not found or the user does not have permission to view the issue.