Visual Basic 6.0 Jira - Issues: Get an Issue

Back to Index

Returns a full representation of the issue for the given issue key or ID. This example returns the JSON for the issue with key = "SCRUM-15".

Documentation: https://developers.atlassian.com/cloud/jira/platform/rest/#api-api-2-issue-issueIdOrKey-get

CURL Command

curl --user jira@example.com:JIRA_API_TOKEN \
  --header 'Accept: application/json' \
  --url 'https://your-domain.atlassian.net/rest/api/2/issue/SCRUM-15'

Visual Basic 6.0 Example

Dim rest As New ChilkatRest
Dim success As Long

'  URL: https://your-domain.atlassian.net/rest/api/2/issue/SCRUM-15
Dim bTls As Long
bTls = 1
Dim port As Long
port = 443
Dim bAutoReconnect As Long
bAutoReconnect = 1
success = rest.Connect("your-domain.atlassian.net",port,bTls,bAutoReconnect)
If (success <> 1) Then
    Debug.Print "ConnectFailReason: " & rest.ConnectFailReason
    Debug.Print rest.LastErrorText
    Exit Sub
End If

success = rest.SetAuthBasic("jira@example.com","JIRA_API_TOKEN")

success = rest.AddHeader("Accept","application/json")

Dim sbResponseBody As New ChilkatStringBuilder
success = rest.FullRequestNoBodySb("GET","/rest/api/2/issue/SCRUM-15",sbResponseBody)
If (success <> 1) Then
    Debug.Print rest.LastErrorText
    Exit Sub
End If

Dim respStatusCode As Long
respStatusCode = rest.ResponseStatusCode
If (respStatusCode >= 400) Then
    Debug.Print "Response Status Code = " & respStatusCode
    Debug.Print "Response Header:"
    Debug.Print rest.ResponseHeader
    Debug.Print "Response Body:"
    Debug.Print sbResponseBody.GetAsString()
    Exit Sub
End If

Dim jsonResponse As New ChilkatJsonObject
success = jsonResponse.LoadSb(sbResponseBody)

Dim expand As String
Dim id As String
Dim self As String
Dim key As String
Dim fieldsIssuetypeSelf As String
Dim fieldsIssuetypeId As String
Dim fieldsIssuetypeDescription As String
Dim fieldsIssuetypeIconUrl As String
Dim fieldsIssuetypeName As String
Dim fieldsIssuetypeSubtask As Long
Dim fieldsTimespent As Long
Dim fieldsProjectSelf As String
Dim fieldsProjectId As String
Dim fieldsProjectKey As String
Dim fieldsProjectName As String
Dim fieldsProjectProjectTypeKey As String
Dim fieldsProjectAvatarUrls48x48 As String
Dim fieldsProjectAvatarUrls24x24 As String
Dim fieldsProjectAvatarUrls16x16 As String
Dim fieldsProjectAvatarUrls32x32 As String
Dim fieldsProjectProjectCategorySelf As String
Dim fieldsProjectProjectCategoryId As String
Dim fieldsProjectProjectCategoryDescription As String
Dim fieldsProjectProjectCategoryName As String
Dim fieldsAggregatetimespent As Long
Dim fieldsResolutionSelf As String
Dim fieldsResolutionId As String
Dim fieldsResolutionDescription As String
Dim fieldsResolutionName As String
Dim fieldsCustomfield_10027 As String
Dim fieldsCustomfield_10028 As String
Dim fieldsCustomfield_10029 As String
Dim fieldsResolutiondate As String
Dim fieldsWorkratio As Long
Dim fieldsWatchesSelf As String
Dim fieldsWatchesWatchCount As Long
Dim fieldsWatchesIsWatching As Long
Dim fieldsLastViewed As String
Dim fieldsCreated As String
Dim fieldsCustomfield_10022 As Long
Dim fieldsCustomfield_10023 As String
Dim fieldsPrioritySelf As String
Dim fieldsPriorityIconUrl As String
Dim fieldsPriorityName As String
Dim fieldsPriorityId As String
Dim fieldsCustomfield_10024 As String
Dim fieldsCustomfield_10025 As String
Dim fieldsCustomfield_10026 As String
Dim fieldsCustomfield_10017 As Long
Dim fieldsCustomfield_10018 As Long
Dim fieldsCustomfield_10019 As Long
Dim fieldsAggregatetimeoriginalestimate As Long
Dim fieldsTimeestimate As Long
Dim fieldsAssigneeSelf As String
Dim fieldsAssigneeName As String
Dim fieldsAssigneeKey As String
Dim fieldsAssigneeAccountId As String
Dim fieldsAssigneeEmailAddress As String
Dim fieldsAssigneeAvatarUrls48x48 As String
Dim fieldsAssigneeAvatarUrls24x24 As String
Dim fieldsAssigneeAvatarUrls16x16 As String
Dim fieldsAssigneeAvatarUrls32x32 As String
Dim fieldsAssigneeDisplayName As String
Dim fieldsAssigneeActive As Long
Dim fieldsAssigneeTimeZone As String
Dim fieldsUpdated As String
Dim fieldsStatusSelf As String
Dim fieldsStatusDescription As String
Dim fieldsStatusIconUrl As String
Dim fieldsStatusName As String
Dim fieldsStatusId As String
Dim fieldsStatusStatusCategorySelf As String
Dim fieldsStatusStatusCategoryId As Long
Dim fieldsStatusStatusCategoryKey As String
Dim fieldsStatusStatusCategoryColorName As String
Dim fieldsStatusStatusCategoryName As String
Dim fieldsTimeoriginalestimate As Long
Dim fieldsDescription As Long
Dim fieldsCustomfield_10011 As String
Dim fieldsCustomfield_10012 As Long
Dim fieldsCustomfield_10013 As String
Dim fieldsCustomfield_10014 As Long
Dim fieldsCustomfield_10015 As Long
Dim fieldsSecurity As Long
Dim fieldsCustomfield_10008 As Long
Dim fieldsAggregatetimeestimate As Long
Dim fieldsCustomfield_10009 As Long
Dim fieldsSummary As String
Dim fieldsCreatorSelf As String
Dim fieldsCreatorName As String
Dim fieldsCreatorKey As String
Dim fieldsCreatorAccountId As String
Dim fieldsCreatorEmailAddress As String
Dim fieldsCreatorAvatarUrls48x48 As String
Dim fieldsCreatorAvatarUrls24x24 As String
Dim fieldsCreatorAvatarUrls16x16 As String
Dim fieldsCreatorAvatarUrls32x32 As String
Dim fieldsCreatorDisplayName As String
Dim fieldsCreatorActive As Long
Dim fieldsCreatorTimeZone As String
Dim fieldsReporterSelf As String
Dim fieldsReporterName As String
Dim fieldsReporterKey As String
Dim fieldsReporterAccountId As String
Dim fieldsReporterEmailAddress As String
Dim fieldsReporterAvatarUrls48x48 As String
Dim fieldsReporterAvatarUrls24x24 As String
Dim fieldsReporterAvatarUrls16x16 As String
Dim fieldsReporterAvatarUrls32x32 As String
Dim fieldsReporterDisplayName As String
Dim fieldsReporterActive As Long
Dim fieldsReporterTimeZone As String
Dim fieldsCustomfield_10000 As String
Dim fieldsAggregateprogressProgress As Long
Dim fieldsAggregateprogressTotal As Long
Dim fieldsCustomfield_10001 As Long
Dim fieldsCustomfield_10002 As Long
Dim fieldsCustomfield_10003 As String
Dim fieldsCustomfield_10004 As Long
Dim fieldsEnvironment As Long
Dim fieldsDuedate As Long
Dim fieldsProgressProgress As Long
Dim fieldsProgressTotal As Long
Dim fieldsVotesSelf As String
Dim fieldsVotesVotes As Long
Dim fieldsVotesHasVoted As Long
Dim fieldsCommentMaxResults As Long
Dim fieldsCommentTotal As Long
Dim fieldsCommentStartAt As Long
Dim fieldsWorklogStartAt As Long
Dim fieldsWorklogMaxResults As Long
Dim fieldsWorklogTotal As Long
Dim i As Long
Dim count_i As Long
Dim strVal As String
Dim authorSelf As String
Dim authorName As String
Dim authorKey As String
Dim authorAccountId As String
Dim authorEmailAddress As String
Dim authorAvatarUrls48x48 As String
Dim authorAvatarUrls24x24 As String
Dim authorAvatarUrls16x16 As String
Dim authorAvatarUrls32x32 As String
Dim authorDisplayName As String
Dim authorActive As Long
Dim authorTimeZone As String
Dim body As String
Dim updateAuthorSelf As String
Dim updateAuthorName As String
Dim updateAuthorKey As String
Dim updateAuthorAccountId As String
Dim updateAuthorEmailAddress As String
Dim updateAuthorAvatarUrls48x48 As String
Dim updateAuthorAvatarUrls24x24 As String
Dim updateAuthorAvatarUrls16x16 As String
Dim updateAuthorAvatarUrls32x32 As String
Dim updateAuthorDisplayName As String
Dim updateAuthorActive As Long
Dim updateAuthorTimeZone As String
Dim created As String
Dim updated As String

expand = jsonResponse.StringOf("expand")
id = jsonResponse.StringOf("id")
self = jsonResponse.StringOf("self")
key = jsonResponse.StringOf("key")
fieldsIssuetypeSelf = jsonResponse.StringOf("fields.issuetype.self")
fieldsIssuetypeId = jsonResponse.StringOf("fields.issuetype.id")
fieldsIssuetypeDescription = jsonResponse.StringOf("fields.issuetype.description")
fieldsIssuetypeIconUrl = jsonResponse.StringOf("fields.issuetype.iconUrl")
fieldsIssuetypeName = jsonResponse.StringOf("fields.issuetype.name")
fieldsIssuetypeSubtask = jsonResponse.BoolOf("fields.issuetype.subtask")
fieldsTimespent = jsonResponse.IsNullOf("fields.timespent")
fieldsProjectSelf = jsonResponse.StringOf("fields.project.self")
fieldsProjectId = jsonResponse.StringOf("fields.project.id")
fieldsProjectKey = jsonResponse.StringOf("fields.project.key")
fieldsProjectName = jsonResponse.StringOf("fields.project.name")
fieldsProjectProjectTypeKey = jsonResponse.StringOf("fields.project.projectTypeKey")
fieldsProjectAvatarUrls48x48 = jsonResponse.StringOf("fields.project.avatarUrls.48x48")
fieldsProjectAvatarUrls24x24 = jsonResponse.StringOf("fields.project.avatarUrls.24x24")
fieldsProjectAvatarUrls16x16 = jsonResponse.StringOf("fields.project.avatarUrls.16x16")
fieldsProjectAvatarUrls32x32 = jsonResponse.StringOf("fields.project.avatarUrls.32x32")
fieldsProjectProjectCategorySelf = jsonResponse.StringOf("fields.project.projectCategory.self")
fieldsProjectProjectCategoryId = jsonResponse.StringOf("fields.project.projectCategory.id")
fieldsProjectProjectCategoryDescription = jsonResponse.StringOf("fields.project.projectCategory.description")
fieldsProjectProjectCategoryName = jsonResponse.StringOf("fields.project.projectCategory.name")
fieldsAggregatetimespent = jsonResponse.IsNullOf("fields.aggregatetimespent")
fieldsResolutionSelf = jsonResponse.StringOf("fields.resolution.self")
fieldsResolutionId = jsonResponse.StringOf("fields.resolution.id")
fieldsResolutionDescription = jsonResponse.StringOf("fields.resolution.description")
fieldsResolutionName = jsonResponse.StringOf("fields.resolution.name")
fieldsCustomfield_10027 = jsonResponse.StringOf("fields.customfield_10027")
fieldsCustomfield_10028 = jsonResponse.StringOf("fields.customfield_10028")
fieldsCustomfield_10029 = jsonResponse.StringOf("fields.customfield_10029")
fieldsResolutiondate = jsonResponse.StringOf("fields.resolutiondate")
fieldsWorkratio = jsonResponse.IntOf("fields.workratio")
fieldsWatchesSelf = jsonResponse.StringOf("fields.watches.self")
fieldsWatchesWatchCount = jsonResponse.IntOf("fields.watches.watchCount")
fieldsWatchesIsWatching = jsonResponse.BoolOf("fields.watches.isWatching")
fieldsLastViewed = jsonResponse.StringOf("fields.lastViewed")
fieldsCreated = jsonResponse.StringOf("fields.created")
fieldsCustomfield_10022 = jsonResponse.IsNullOf("fields.customfield_10022")
fieldsCustomfield_10023 = jsonResponse.StringOf("fields.customfield_10023")
fieldsPrioritySelf = jsonResponse.StringOf("fields.priority.self")
fieldsPriorityIconUrl = jsonResponse.StringOf("fields.priority.iconUrl")
fieldsPriorityName = jsonResponse.StringOf("fields.priority.name")
fieldsPriorityId = jsonResponse.StringOf("fields.priority.id")
fieldsCustomfield_10024 = jsonResponse.StringOf("fields.customfield_10024")
fieldsCustomfield_10025 = jsonResponse.StringOf("fields.customfield_10025")
fieldsCustomfield_10026 = jsonResponse.StringOf("fields.customfield_10026")
fieldsCustomfield_10017 = jsonResponse.IsNullOf("fields.customfield_10017")
fieldsCustomfield_10018 = jsonResponse.IsNullOf("fields.customfield_10018")
fieldsCustomfield_10019 = jsonResponse.IntOf("fields.customfield_10019")
fieldsAggregatetimeoriginalestimate = jsonResponse.IsNullOf("fields.aggregatetimeoriginalestimate")
fieldsTimeestimate = jsonResponse.IsNullOf("fields.timeestimate")
fieldsAssigneeSelf = jsonResponse.StringOf("fields.assignee.self")
fieldsAssigneeName = jsonResponse.StringOf("fields.assignee.name")
fieldsAssigneeKey = jsonResponse.StringOf("fields.assignee.key")
fieldsAssigneeAccountId = jsonResponse.StringOf("fields.assignee.accountId")
fieldsAssigneeEmailAddress = jsonResponse.StringOf("fields.assignee.emailAddress")
fieldsAssigneeAvatarUrls48x48 = jsonResponse.StringOf("fields.assignee.avatarUrls.48x48")
fieldsAssigneeAvatarUrls24x24 = jsonResponse.StringOf("fields.assignee.avatarUrls.24x24")
fieldsAssigneeAvatarUrls16x16 = jsonResponse.StringOf("fields.assignee.avatarUrls.16x16")
fieldsAssigneeAvatarUrls32x32 = jsonResponse.StringOf("fields.assignee.avatarUrls.32x32")
fieldsAssigneeDisplayName = jsonResponse.StringOf("fields.assignee.displayName")
fieldsAssigneeActive = jsonResponse.BoolOf("fields.assignee.active")
fieldsAssigneeTimeZone = jsonResponse.StringOf("fields.assignee.timeZone")
fieldsUpdated = jsonResponse.StringOf("fields.updated")
fieldsStatusSelf = jsonResponse.StringOf("fields.status.self")
fieldsStatusDescription = jsonResponse.StringOf("fields.status.description")
fieldsStatusIconUrl = jsonResponse.StringOf("fields.status.iconUrl")
fieldsStatusName = jsonResponse.StringOf("fields.status.name")
fieldsStatusId = jsonResponse.StringOf("fields.status.id")
fieldsStatusStatusCategorySelf = jsonResponse.StringOf("fields.status.statusCategory.self")
fieldsStatusStatusCategoryId = jsonResponse.IntOf("fields.status.statusCategory.id")
fieldsStatusStatusCategoryKey = jsonResponse.StringOf("fields.status.statusCategory.key")
fieldsStatusStatusCategoryColorName = jsonResponse.StringOf("fields.status.statusCategory.colorName")
fieldsStatusStatusCategoryName = jsonResponse.StringOf("fields.status.statusCategory.name")
fieldsTimeoriginalestimate = jsonResponse.IsNullOf("fields.timeoriginalestimate")
fieldsDescription = jsonResponse.IsNullOf("fields.description")
fieldsCustomfield_10011 = jsonResponse.StringOf("fields.customfield_10011")
fieldsCustomfield_10012 = jsonResponse.IsNullOf("fields.customfield_10012")
fieldsCustomfield_10013 = jsonResponse.StringOf("fields.customfield_10013")
fieldsCustomfield_10014 = jsonResponse.IsNullOf("fields.customfield_10014")
fieldsCustomfield_10015 = jsonResponse.IsNullOf("fields.customfield_10015")
fieldsSecurity = jsonResponse.IsNullOf("fields.security")
fieldsCustomfield_10008 = jsonResponse.IsNullOf("fields.customfield_10008")
fieldsAggregatetimeestimate = jsonResponse.IsNullOf("fields.aggregatetimeestimate")
fieldsCustomfield_10009 = jsonResponse.IsNullOf("fields.customfield_10009")
fieldsSummary = jsonResponse.StringOf("fields.summary")
fieldsCreatorSelf = jsonResponse.StringOf("fields.creator.self")
fieldsCreatorName = jsonResponse.StringOf("fields.creator.name")
fieldsCreatorKey = jsonResponse.StringOf("fields.creator.key")
fieldsCreatorAccountId = jsonResponse.StringOf("fields.creator.accountId")
fieldsCreatorEmailAddress = jsonResponse.StringOf("fields.creator.emailAddress")
fieldsCreatorAvatarUrls48x48 = jsonResponse.StringOf("fields.creator.avatarUrls.48x48")
fieldsCreatorAvatarUrls24x24 = jsonResponse.StringOf("fields.creator.avatarUrls.24x24")
fieldsCreatorAvatarUrls16x16 = jsonResponse.StringOf("fields.creator.avatarUrls.16x16")
fieldsCreatorAvatarUrls32x32 = jsonResponse.StringOf("fields.creator.avatarUrls.32x32")
fieldsCreatorDisplayName = jsonResponse.StringOf("fields.creator.displayName")
fieldsCreatorActive = jsonResponse.BoolOf("fields.creator.active")
fieldsCreatorTimeZone = jsonResponse.StringOf("fields.creator.timeZone")
fieldsReporterSelf = jsonResponse.StringOf("fields.reporter.self")
fieldsReporterName = jsonResponse.StringOf("fields.reporter.name")
fieldsReporterKey = jsonResponse.StringOf("fields.reporter.key")
fieldsReporterAccountId = jsonResponse.StringOf("fields.reporter.accountId")
fieldsReporterEmailAddress = jsonResponse.StringOf("fields.reporter.emailAddress")
fieldsReporterAvatarUrls48x48 = jsonResponse.StringOf("fields.reporter.avatarUrls.48x48")
fieldsReporterAvatarUrls24x24 = jsonResponse.StringOf("fields.reporter.avatarUrls.24x24")
fieldsReporterAvatarUrls16x16 = jsonResponse.StringOf("fields.reporter.avatarUrls.16x16")
fieldsReporterAvatarUrls32x32 = jsonResponse.StringOf("fields.reporter.avatarUrls.32x32")
fieldsReporterDisplayName = jsonResponse.StringOf("fields.reporter.displayName")
fieldsReporterActive = jsonResponse.BoolOf("fields.reporter.active")
fieldsReporterTimeZone = jsonResponse.StringOf("fields.reporter.timeZone")
fieldsCustomfield_10000 = jsonResponse.StringOf("fields.customfield_10000")
fieldsAggregateprogressProgress = jsonResponse.IntOf("fields.aggregateprogress.progress")
fieldsAggregateprogressTotal = jsonResponse.IntOf("fields.aggregateprogress.total")
fieldsCustomfield_10001 = jsonResponse.IsNullOf("fields.customfield_10001")
fieldsCustomfield_10002 = jsonResponse.IsNullOf("fields.customfield_10002")
fieldsCustomfield_10003 = jsonResponse.StringOf("fields.customfield_10003")
fieldsCustomfield_10004 = jsonResponse.IsNullOf("fields.customfield_10004")
fieldsEnvironment = jsonResponse.IsNullOf("fields.environment")
fieldsDuedate = jsonResponse.IsNullOf("fields.duedate")
fieldsProgressProgress = jsonResponse.IntOf("fields.progress.progress")
fieldsProgressTotal = jsonResponse.IntOf("fields.progress.total")
fieldsVotesSelf = jsonResponse.StringOf("fields.votes.self")
fieldsVotesVotes = jsonResponse.IntOf("fields.votes.votes")
fieldsVotesHasVoted = jsonResponse.BoolOf("fields.votes.hasVoted")
fieldsCommentMaxResults = jsonResponse.IntOf("fields.comment.maxResults")
fieldsCommentTotal = jsonResponse.IntOf("fields.comment.total")
fieldsCommentStartAt = jsonResponse.IntOf("fields.comment.startAt")
fieldsWorklogStartAt = jsonResponse.IntOf("fields.worklog.startAt")
fieldsWorklogMaxResults = jsonResponse.IntOf("fields.worklog.maxResults")
fieldsWorklogTotal = jsonResponse.IntOf("fields.worklog.total")
i = 0
count_i = jsonResponse.SizeOfArray("fields.fixVersions")
Do While i < count_i
    jsonResponse.I = i
    i = i + 1
Loop
i = 0
count_i = jsonResponse.SizeOfArray("fields.labels")
Do While i < count_i
    jsonResponse.I = i
    i = i + 1
Loop
i = 0
count_i = jsonResponse.SizeOfArray("fields.customfield_10016")
Do While i < count_i
    jsonResponse.I = i
    i = i + 1
Loop
i = 0
count_i = jsonResponse.SizeOfArray("fields.versions")
Do While i < count_i
    jsonResponse.I = i
    i = i + 1
Loop
i = 0
count_i = jsonResponse.SizeOfArray("fields.issuelinks")
Do While i < count_i
    jsonResponse.I = i
    i = i + 1
Loop
i = 0
count_i = jsonResponse.SizeOfArray("fields.components")
Do While i < count_i
    jsonResponse.I = i
    i = i + 1
Loop
i = 0
count_i = jsonResponse.SizeOfArray("fields.customfield_10010")
Do While i < count_i
    jsonResponse.I = i
    strVal = jsonResponse.StringOf("fields.customfield_10010[i]")
    i = i + 1
Loop
i = 0
count_i = jsonResponse.SizeOfArray("fields.attachment")
Do While i < count_i
    jsonResponse.I = i
    i = i + 1
Loop
i = 0
count_i = jsonResponse.SizeOfArray("fields.subtasks")
Do While i < count_i
    jsonResponse.I = i
    i = i + 1
Loop
i = 0
count_i = jsonResponse.SizeOfArray("fields.comment.comments")
Do While i < count_i
    jsonResponse.I = i
    self = jsonResponse.StringOf("fields.comment.comments[i].self")
    id = jsonResponse.StringOf("fields.comment.comments[i].id")
    authorSelf = jsonResponse.StringOf("fields.comment.comments[i].author.self")
    authorName = jsonResponse.StringOf("fields.comment.comments[i].author.name")
    authorKey = jsonResponse.StringOf("fields.comment.comments[i].author.key")
    authorAccountId = jsonResponse.StringOf("fields.comment.comments[i].author.accountId")
    authorEmailAddress = jsonResponse.StringOf("fields.comment.comments[i].author.emailAddress")
    authorAvatarUrls48x48 = jsonResponse.StringOf("fields.comment.comments[i].author.avatarUrls.48x48")
    authorAvatarUrls24x24 = jsonResponse.StringOf("fields.comment.comments[i].author.avatarUrls.24x24")
    authorAvatarUrls16x16 = jsonResponse.StringOf("fields.comment.comments[i].author.avatarUrls.16x16")
    authorAvatarUrls32x32 = jsonResponse.StringOf("fields.comment.comments[i].author.avatarUrls.32x32")
    authorDisplayName = jsonResponse.StringOf("fields.comment.comments[i].author.displayName")
    authorActive = jsonResponse.BoolOf("fields.comment.comments[i].author.active")
    authorTimeZone = jsonResponse.StringOf("fields.comment.comments[i].author.timeZone")
    body = jsonResponse.StringOf("fields.comment.comments[i].body")
    updateAuthorSelf = jsonResponse.StringOf("fields.comment.comments[i].updateAuthor.self")
    updateAuthorName = jsonResponse.StringOf("fields.comment.comments[i].updateAuthor.name")
    updateAuthorKey = jsonResponse.StringOf("fields.comment.comments[i].updateAuthor.key")
    updateAuthorAccountId = jsonResponse.StringOf("fields.comment.comments[i].updateAuthor.accountId")
    updateAuthorEmailAddress = jsonResponse.StringOf("fields.comment.comments[i].updateAuthor.emailAddress")
    updateAuthorAvatarUrls48x48 = jsonResponse.StringOf("fields.comment.comments[i].updateAuthor.avatarUrls.48x48")
    updateAuthorAvatarUrls24x24 = jsonResponse.StringOf("fields.comment.comments[i].updateAuthor.avatarUrls.24x24")
    updateAuthorAvatarUrls16x16 = jsonResponse.StringOf("fields.comment.comments[i].updateAuthor.avatarUrls.16x16")
    updateAuthorAvatarUrls32x32 = jsonResponse.StringOf("fields.comment.comments[i].updateAuthor.avatarUrls.32x32")
    updateAuthorDisplayName = jsonResponse.StringOf("fields.comment.comments[i].updateAuthor.displayName")
    updateAuthorActive = jsonResponse.BoolOf("fields.comment.comments[i].updateAuthor.active")
    updateAuthorTimeZone = jsonResponse.StringOf("fields.comment.comments[i].updateAuthor.timeZone")
    created = jsonResponse.StringOf("fields.comment.comments[i].created")
    updated = jsonResponse.StringOf("fields.comment.comments[i].updated")
    i = i + 1
Loop
i = 0
count_i = jsonResponse.SizeOfArray("fields.worklog.worklogs")
Do While i < count_i
    jsonResponse.I = i
    i = i + 1
Loop

Sample JSON Response Body

{
  "expand": "renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations",
  "id": "10014",
  "self": "https://chilkat.atlassian.net/rest/api/2/issue/10014",
  "key": "SCRUM-15",
  "fields": {
    "issuetype": {
      "self": "https://chilkat.atlassian.net/rest/api/2/issuetype/10001",
      "id": "10001",
      "description": "Stories track functionality or features expressed as user goals.",
      "iconUrl": "https://chilkat.atlassian.net/images/icons/issuetypes/story.svg",
      "name": "Story",
      "subtask": false
    },
    "timespent": null,
    "project": {
      "self": "https://chilkat.atlassian.net/rest/api/2/project/10000",
      "id": "10000",
      "key": "SCRUM",
      "name": "Scrumsoft",
      "projectTypeKey": "software",
      "avatarUrls": {
        "48x48": "https://chilkat.atlassian.net/secure/projectavatar?pid=10000&avatarId=10400",
        "24x24": "https://chilkat.atlassian.net/secure/projectavatar?size=small&pid=10000&avatarId=10400",
        "16x16": "https://chilkat.atlassian.net/secure/projectavatar?size=xsmall&pid=10000&avatarId=10400",
        "32x32": "https://chilkat.atlassian.net/secure/projectavatar?size=medium&pid=10000&avatarId=10400"
      },
      "projectCategory": {
        "self": "https://chilkat.atlassian.net/rest/api/2/projectCategory/10002",
        "id": "10002",
        "description": "Insane Projects",
        "name": "Insane"
      }
    },
    "fixVersions": [
    ],
    "aggregatetimespent": null,
    "resolution": {
      "self": "https://chilkat.atlassian.net/rest/api/2/resolution/10000",
      "id": "10000",
      "description": "Work has been completed on this issue.",
      "name": "Done"
    },
    "customfield_10027": "",
    "customfield_10028": "",
    "customfield_10029": "",
    "resolutiondate": "2018-04-08T00:33:55.852-0500",
    "workratio": -1,
    "watches": {
      "self": "https://chilkat.atlassian.net/rest/api/2/issue/SCRUM-15/watchers",
      "watchCount": 0,
      "isWatching": false
    },
    "lastViewed": "2018-04-12T20:07:08.181-0500",
    "created": "2018-04-03T09:57:55.852-0500",
    "customfield_10022": null,
    "customfield_10023": "",
    "priority": {
      "self": "https://chilkat.atlassian.net/rest/api/2/priority/3",
      "iconUrl": "https://chilkat.atlassian.net/images/icons/priorities/medium.svg",
      "name": "Medium",
      "id": "3"
    },
    "customfield_10024": "",
    "customfield_10025": "",
    "customfield_10026": "",
    "labels": [
    ],
    "customfield_10016": [
    ],
    "customfield_10017": null,
    "customfield_10018": null,
    "customfield_10019": 4.0,
    "aggregatetimeoriginalestimate": null,
    "timeestimate": null,
    "versions": [
    ],
    "issuelinks": [
    ],
    "assignee": {
      "self": "https://chilkat.atlassian.net/rest/api/2/user?username=matt",
      "name": "matt",
      "key": "matt",
      "accountId": "5acf82d7926ac92a7c0d7bd3",
      "emailAddress": "matt@@chilkat.io",
      "avatarUrls": {
        "48x48": "https://avatar-cdn.atlassian.com/ae220e85f283d0ecea372e06ad2261d3?s=48&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2Fae220e85f283d0ecea372e06ad2261d3%3Fd%3Dmm%26s%3D48%26noRedirect%3Dtrue",
        "24x24": "https://avatar-cdn.atlassian.com/ae220e85f283d0ecea372e06ad2261d3?s=24&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2Fae220e85f283d0ecea372e06ad2261d3%3Fd%3Dmm%26s%3D24%26noRedirect%3Dtrue",
        "16x16": "https://avatar-cdn.atlassian.com/ae220e85f283d0ecea372e06ad2261d3?s=16&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2Fae220e85f283d0ecea372e06ad2261d3%3Fd%3Dmm%26s%3D16%26noRedirect%3Dtrue",
        "32x32": "https://avatar-cdn.atlassian.com/ae220e85f283d0ecea372e06ad2261d3?s=32&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2Fae220e85f283d0ecea372e06ad2261d3%3Fd%3Dmm%26s%3D32%26noRedirect%3Dtrue"
      },
      "displayName": "Matt of Chilkat",
      "active": true,
      "timeZone": "America/Chicago"
    },
    "updated": "2018-04-12T20:07:08.104-0500",
    "status": {
      "self": "https://chilkat.atlassian.net/rest/api/2/status/10001",
      "description": "",
      "iconUrl": "https://chilkat.atlassian.net/",
      "name": "Done",
      "id": "10001",
      "statusCategory": {
        "self": "https://chilkat.atlassian.net/rest/api/2/statuscategory/3",
        "id": 3,
        "key": "done",
        "colorName": "green",
        "name": "Done"
      }
    },
    "components": [
    ],
    "timeoriginalestimate": null,
    "description": null,
    "customfield_10010": [
      "com.atlassian.greenhopper.service.sprint.Sprint@@3aaca4f7[id=1,rapidViewId=1,state=ACTIVE,name=Sample Sprint 2,goal=<null>,startDate=2018-04-03T14:57:57.335Z,endDate=2018-04-17T15:17:57.335Z,completeDate=<null>,sequence=1]"
    ],
    "customfield_10011": "0|i0000n:",
    "customfield_10012": null,
    "customfield_10013": "3_*:*_1_*:*_208320000_*|*_10000_*:*_1_*:*_189840000_*|*_10001_*:*_1_*:*_0",
    "customfield_10014": null,
    "customfield_10015": null,
    "timetracking": {},
    "security": null,
    "customfield_10008": null,
    "aggregatetimeestimate": null,
    "customfield_10009": null,
    "attachment": [
    ],
    "summary": "As a scrum master, I can see the progress of a sprint via the Burndown Chart >> Click \"Reports\" to view the Burndown Chart",
    "creator": {
      "self": "https://chilkat.atlassian.net/rest/api/2/user?username=admin",
      "name": "admin",
      "key": "admin",
      "accountId": "557058:be8b47b5-3bc0-43f6-b6b2-2cca0de12204",
      "emailAddress": "admin@@chilkatsoft.com",
      "avatarUrls": {
        "48x48": "https://avatar-cdn.atlassian.com/16d54dcc6d4bef86fd7ee62a7cf6334a?s=48&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2F16d54dcc6d4bef86fd7ee62a7cf6334a%3Fd%3Dmm%26s%3D48%26noRedirect%3Dtrue",
        "24x24": "https://avatar-cdn.atlassian.com/16d54dcc6d4bef86fd7ee62a7cf6334a?s=24&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2F16d54dcc6d4bef86fd7ee62a7cf6334a%3Fd%3Dmm%26s%3D24%26noRedirect%3Dtrue",
        "16x16": "https://avatar-cdn.atlassian.com/16d54dcc6d4bef86fd7ee62a7cf6334a?s=16&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2F16d54dcc6d4bef86fd7ee62a7cf6334a%3Fd%3Dmm%26s%3D16%26noRedirect%3Dtrue",
        "32x32": "https://avatar-cdn.atlassian.com/16d54dcc6d4bef86fd7ee62a7cf6334a?s=32&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2F16d54dcc6d4bef86fd7ee62a7cf6334a%3Fd%3Dmm%26s%3D32%26noRedirect%3Dtrue"
      },
      "displayName": "Chilkat Admin",
      "active": true,
      "timeZone": "America/Chicago"
    },
    "subtasks": [
    ],
    "reporter": {
      "self": "https://chilkat.atlassian.net/rest/api/2/user?username=admin",
      "name": "admin",
      "key": "admin",
      "accountId": "557058:be8b47b5-3bc0-43f6-b6b2-2cca0de12204",
      "emailAddress": "admin@@chilkatsoft.com",
      "avatarUrls": {
        "48x48": "https://avatar-cdn.atlassian.com/16d54dcc6d4bef86fd7ee62a7cf6334a?s=48&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2F16d54dcc6d4bef86fd7ee62a7cf6334a%3Fd%3Dmm%26s%3D48%26noRedirect%3Dtrue",
        "24x24": "https://avatar-cdn.atlassian.com/16d54dcc6d4bef86fd7ee62a7cf6334a?s=24&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2F16d54dcc6d4bef86fd7ee62a7cf6334a%3Fd%3Dmm%26s%3D24%26noRedirect%3Dtrue",
        "16x16": "https://avatar-cdn.atlassian.com/16d54dcc6d4bef86fd7ee62a7cf6334a?s=16&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2F16d54dcc6d4bef86fd7ee62a7cf6334a%3Fd%3Dmm%26s%3D16%26noRedirect%3Dtrue",
        "32x32": "https://avatar-cdn.atlassian.com/16d54dcc6d4bef86fd7ee62a7cf6334a?s=32&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2F16d54dcc6d4bef86fd7ee62a7cf6334a%3Fd%3Dmm%26s%3D32%26noRedirect%3Dtrue"
      },
      "displayName": "Chilkat Admin",
      "active": true,
      "timeZone": "America/Chicago"
    },
    "customfield_10000": "{}",
    "aggregateprogress": {
      "progress": 0,
      "total": 0
    },
    "customfield_10001": null,
    "customfield_10002": null,
    "customfield_10003": "",
    "customfield_10004": null,
    "environment": null,
    "duedate": null,
    "progress": {
      "progress": 0,
      "total": 0
    },
    "votes": {
      "self": "https://chilkat.atlassian.net/rest/api/2/issue/SCRUM-15/votes",
      "votes": 0,
      "hasVoted": false
    },
    "comment": {
      "comments": [
        {
          "self": "https://chilkat.atlassian.net/rest/api/2/issue/10014/comment/10006",
          "id": "10006",
          "author": {
            "self": "https://chilkat.atlassian.net/rest/api/2/user?username=admin",
            "name": "admin",
            "key": "admin",
            "accountId": "557058:be8b47b5-3bc0-43f6-b6b2-2cca0de12204",
            "emailAddress": "admin@@chilkatsoft.com",
            "avatarUrls": {
              "48x48": "https://avatar-cdn.atlassian.com/16d54dcc6d4bef86fd7ee62a7cf6334a?s=48&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2F16d54dcc6d4bef86fd7ee62a7cf6334a%3Fd%3Dmm%26s%3D48%26noRedirect%3Dtrue",
              "24x24": "https://avatar-cdn.atlassian.com/16d54dcc6d4bef86fd7ee62a7cf6334a?s=24&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2F16d54dcc6d4bef86fd7ee62a7cf6334a%3Fd%3Dmm%26s%3D24%26noRedirect%3Dtrue",
              "16x16": "https://avatar-cdn.atlassian.com/16d54dcc6d4bef86fd7ee62a7cf6334a?s=16&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2F16d54dcc6d4bef86fd7ee62a7cf6334a%3Fd%3Dmm%26s%3D16%26noRedirect%3Dtrue",
              "32x32": "https://avatar-cdn.atlassian.com/16d54dcc6d4bef86fd7ee62a7cf6334a?s=32&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2F16d54dcc6d4bef86fd7ee62a7cf6334a%3Fd%3Dmm%26s%3D32%26noRedirect%3Dtrue"
            },
            "displayName": "Chilkat Admin",
            "active": true,
            "timeZone": "America/Chicago"
          },
          "body": "Joined Sample Sprint 2 7 days 9 hours 10 minutes ago",
          "updateAuthor": {
            "self": "https://chilkat.atlassian.net/rest/api/2/user?username=admin",
            "name": "admin",
            "key": "admin",
            "accountId": "557058:be8b47b5-3bc0-43f6-b6b2-2cca0de12204",
            "emailAddress": "admin@@chilkatsoft.com",
            "avatarUrls": {
              "48x48": "https://avatar-cdn.atlassian.com/16d54dcc6d4bef86fd7ee62a7cf6334a?s=48&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2F16d54dcc6d4bef86fd7ee62a7cf6334a%3Fd%3Dmm%26s%3D48%26noRedirect%3Dtrue",
              "24x24": "https://avatar-cdn.atlassian.com/16d54dcc6d4bef86fd7ee62a7cf6334a?s=24&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2F16d54dcc6d4bef86fd7ee62a7cf6334a%3Fd%3Dmm%26s%3D24%26noRedirect%3Dtrue",
              "16x16": "https://avatar-cdn.atlassian.com/16d54dcc6d4bef86fd7ee62a7cf6334a?s=16&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2F16d54dcc6d4bef86fd7ee62a7cf6334a%3Fd%3Dmm%26s%3D16%26noRedirect%3Dtrue",
              "32x32": "https://avatar-cdn.atlassian.com/16d54dcc6d4bef86fd7ee62a7cf6334a?s=32&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2F16d54dcc6d4bef86fd7ee62a7cf6334a%3Fd%3Dmm%26s%3D32%26noRedirect%3Dtrue"
            },
            "displayName": "Chilkat Admin",
            "active": true,
            "timeZone": "America/Chicago"
          },
          "created": "2018-04-08T00:33:55.852-0500",
          "updated": "2018-04-08T00:33:55.852-0500"
        },
        {
          "self": "https://chilkat.atlassian.net/rest/api/2/issue/10014/comment/10007",
          "id": "10007",
          "author": {
            "self": "https://chilkat.atlassian.net/rest/api/2/user?username=admin",
            "name": "admin",
            "key": "admin",
            "accountId": "557058:be8b47b5-3bc0-43f6-b6b2-2cca0de12204",
            "emailAddress": "admin@@chilkatsoft.com",
            "avatarUrls": {
              "48x48": "https://avatar-cdn.atlassian.com/16d54dcc6d4bef86fd7ee62a7cf6334a?s=48&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2F16d54dcc6d4bef86fd7ee62a7cf6334a%3Fd%3Dmm%26s%3D48%26noRedirect%3Dtrue",
              "24x24": "https://avatar-cdn.atlassian.com/16d54dcc6d4bef86fd7ee62a7cf6334a?s=24&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2F16d54dcc6d4bef86fd7ee62a7cf6334a%3Fd%3Dmm%26s%3D24%26noRedirect%3Dtrue",
              "16x16": "https://avatar-cdn.atlassian.com/16d54dcc6d4bef86fd7ee62a7cf6334a?s=16&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2F16d54dcc6d4bef86fd7ee62a7cf6334a%3Fd%3Dmm%26s%3D16%26noRedirect%3Dtrue",
              "32x32": "https://avatar-cdn.atlassian.com/16d54dcc6d4bef86fd7ee62a7cf6334a?s=32&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2F16d54dcc6d4bef86fd7ee62a7cf6334a%3Fd%3Dmm%26s%3D32%26noRedirect%3Dtrue"
            },
            "displayName": "Chilkat Admin",
            "active": true,
            "timeZone": "America/Chicago"
          },
          "body": "To Do to In Progress 5 days 4 hours 26 minutes ago\r\nIn Progress to Done 2 days 18 hours 34 minutes ago",
          "updateAuthor": {
            "self": "https://chilkat.atlassian.net/rest/api/2/user?username=admin",
            "name": "admin",
            "key": "admin",
            "accountId": "557058:be8b47b5-3bc0-43f6-b6b2-2cca0de12204",
            "emailAddress": "admin@@chilkatsoft.com",
            "avatarUrls": {
              "48x48": "https://avatar-cdn.atlassian.com/16d54dcc6d4bef86fd7ee62a7cf6334a?s=48&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2F16d54dcc6d4bef86fd7ee62a7cf6334a%3Fd%3Dmm%26s%3D48%26noRedirect%3Dtrue",
              "24x24": "https://avatar-cdn.atlassian.com/16d54dcc6d4bef86fd7ee62a7cf6334a?s=24&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2F16d54dcc6d4bef86fd7ee62a7cf6334a%3Fd%3Dmm%26s%3D24%26noRedirect%3Dtrue",
              "16x16": "https://avatar-cdn.atlassian.com/16d54dcc6d4bef86fd7ee62a7cf6334a?s=16&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2F16d54dcc6d4bef86fd7ee62a7cf6334a%3Fd%3Dmm%26s%3D16%26noRedirect%3Dtrue",
              "32x32": "https://avatar-cdn.atlassian.com/16d54dcc6d4bef86fd7ee62a7cf6334a?s=32&d=https%3A%2F%2Fsecure.gravatar.com%2Favatar%2F16d54dcc6d4bef86fd7ee62a7cf6334a%3Fd%3Dmm%26s%3D32%26noRedirect%3Dtrue"
            },
            "displayName": "Chilkat Admin",
            "active": true,
            "timeZone": "America/Chicago"
          },
          "created": "2018-04-08T00:33:55.852-0500",
          "updated": "2018-04-08T00:33:55.852-0500"
        }
      ],
      "maxResults": 2,
      "total": 2,
      "startAt": 0
    },
    "worklog": {
      "startAt": 0,
      "maxResults": 20,
      "total": 0,
      "worklogs": [
      ]
    }
  }
}