-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Low
-
None
-
Affects Version/s: 7.13.5, 8.1.2, 8.3.0
-
Component/s: Documentation - All, Ecosystem - Connect JIRA Integration, REST API
-
7.13
-
Severity 3 - Minor
Issue Summary
The "Edit Issue" REST API documentation has some invalid JSON in the example request body
Steps to Reproduce
- Search the example for the enpoint /rest/api/2/issue/{issueIdOrKey}/editmeta
Expected Results
The "properties" section should look as below:
"properties":[
{
"key":"key1",
"value":"properties can be set at issue create or update time"
},
{
"key":"key2",
"value":"and there can be multiple properties"
}
]
}
Actual Results
The "property" section shows:
"properties":[
{"key":"key1","value":'properties' : 'can be set at issue create or update time'},
{"key":"key2","value":'and' : 'there can be multiple properties'}
]
Workaround
Use the correct syntax
- mentioned in
-
Page Loading...