Hi Team,
I have a customfield_XXXX in jira issue which is a table grid where I can enter employees data . I want to extract that data but when running below API /rest/api/latest/issue/{issueKey} it is just returning the row numbers in that table grid and not the actual values for that
Below is the response.
{
"expand": "schema,names",
"startAt": 0,
"maxResults": 50,
"total": 8,
"issues": [
{
"expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields",
"id": "XXXXX",
"self": "https://jira.test.com/rest/api/latest/issue/XXXXX",
"key": "TT-XXXX",
"fields": {
"customfield_XXXX": "11"
}
}
]
}
where 11 is the total number of rows but not the actual data from that grid.
Can you please help on how can I get the actual data ?
Used below options but with no luck.
rest/api/latest/issue/TT-XXXX?fieldsByKeys=true?fields=customfield_XXXX&expand=customfield_XXXX
rest/api/latest/issue/TT-XXXX?expand=renderedFields
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.