-
Bug
-
Resolution: Fixed
-
Medium
-
5.2
-
None
-
5.02
-
I'm trying to get the rendered description of a set of issues:
If I use the REST api for a single issue, the rendered description is returned:
https://jira.atlassian.com/rest/api/2/issue/JRA-9?fields=description&expand=renderedFields
{
"expand": "renderedFields,names,schema,transitions,operations,editmeta,changelog",
"id": "10148",
"self": "https://jira.atlassian.com/rest/api/2/issue/10148",
"key": "JRA-9",
"fields": {
"description": "Add time zones to user profile. That way the dates displayed to a user are always contiguous with their local time zone, rather than the server's time zone."
},
"renderedFields": {
"description": "Add time zones to user profile. That way the dates displayed to a user are always contiguous with their local time zone, rather than the server's time zone."
}
}
However, if I use the JQL REST api, the renderedFields returns empty:
https://jira.atlassian.com/rest/api/2/search?jql=issuekey+in+(JRA-9)&fields=description&expand=renderedFields
{
"expand": "names,schema",
"startAt": 0,
"maxResults": 50,
"total": 1,
"issues": [
{
"expand": "editmeta,renderedFields,transitions,changelog,operations",
"id": "10148",
"self": "https://jira.atlassian.com/rest/api/2/issue/10148",
"key": "JRA-9",
"fields": {
"description": "Add time zones to user profile. That way the dates displayed to a user are always contiguous with their local time zone, rather than the server's time zone."
},
"renderedFields": {}
}
]
}
- blocks
-
BSERV-3026 Jira description not rendering wiki markup in dialog
-
- Closed
-
- has a regression in
-
JRASERVER-65922 renderedFields include Fields with Null values
-
- Gathering Impact
-
- incorporates
-
JRASERVER-31505 Transitions are not appearing in the SEARCH call on Rest API
-
- Closed
-
- is related to
-
JRASERVER-31467 Use proper hierarchical field referencing for expanding fields instead of treating everything as a single level
- Closed
- mentioned in
-
Wiki Page Loading...