I want to fetch only body of a comment on a jira issue but currently I'm getting whole content as -
{
"self": "url over here",
"id": "185626",
"author": {
"self": "committer username ",
"name": "name",
"key": "key",
"emailAddress": "email-id",
"avatarUrls": {
##### URLS OVER HERE #####},
"displayName": "LN, FN",
"active": true,
"timeZone": "CET"
},
"body": "Here if the actual message",
"updateAuthor": {
"self": "committer username ",
"name": "name",
"key": "key",
"emailAddress": "email-id",
"avatarUrls": {
##### URLS OVER HERE #####},
"displayName": "LN, FN",
"active": true,
"timeZone": "CET"},
"created": "2019-09-19T10:15:46.697+0200",
"updated": "2019-09-19T10:15:46.697+0200"
}
But I want to access only body from this output
How can I do it?