
๐พCreate Jira Issue
Step 1: Set up the project
go mod init <module-name>Step 2: Install the "go-atlassian" library
go get -v github.com/ctreminiom/go-atlassianStep 3: Import the necessary packages
package main
import (
"fmt"
"log"
"os"
jira "github.com/ctreminiom/go-atlassian/jira/v2"
)Step 4: Authenticate with Jira
Step 5: Custom fields definition
Custom-field Types
Custom-field Types
GroupsGroupURL'sTextDateTimeDateCascading
MultiSelectSelectRadioButtonUserUsersNumberCheckBox
Step 6: Create an issue
Step 7: Run the program

Last updated
Was this helpful?