You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using jql search for getting jira issues using the same golang client. And I am trying to get sprint name attached to each issues. But it looks like the sprint field is a custom one.
As per json payload like below (I used "$JIRA_URL/rest/api/2/issue/JIN-3047" to get this payload)
The value in "name" is what I need
"customfield_10005": [
{
"id": 6942,
"name": "JIN Dev 2023: Jan 16 - Jan 27",
"state": "active",
"boardId": 618,
"goal": "",
"startDate": "2023-01-16T16:12:06.752Z",
"endDate": "2023-01-27T17:12:00.000Z"
}
],
Wonder how can I parse this using Golang client?
go-jira version: v1.16.0 (latest release available in this repo)
go version: 1.19.X
Jira Type: cloud
The text was updated successfully, but these errors were encountered:
I am using jql search for getting jira issues using the same golang client. And I am trying to get sprint name attached to each issues. But it looks like the
sprint
field is a custom one.As per json payload like below (I used "$JIRA_URL/rest/api/2/issue/JIN-3047" to get this payload)
The value in "name" is what I need
Wonder how can I parse this using Golang client?
The text was updated successfully, but these errors were encountered: