Hi all,
When I run a jql search like the following
https://url/rest/api/2/search?jql=issue=ISSUE-ID&fields=id,key,fixVersions,description"
I have the result:
{
"expand": "names,schema",
"startAt": 0,
"maxResults": 50,
"total": 1,
"issues": [
{
"expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields",
"id": "48687",
"self": "https://url/rest/api/2/issue/48687",
"key": "issue-xyz",
"fields": {
"description": null,
"fixVersions": [
{
"self": "https://url/rest/api/2/version/17908",
"id": "17908",
"description": "description abc",
"name": "name abc",
"archived": false,
"released": false
}
]
}
}
]
}
Is it possible to get a specific field of a nested object? For example is possible to get only the field description under fixVersions?
AFAIK, you can specify only the fields. It is not possible to specify the field from within an object.
@Arun_Thundyill_Saseendran OK, thank you for your help.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.