
๐ฎCreate Jira ITSM Request
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"
"github.com/ctreminiom/go-atlassian/jira/sm"
"github.com/ctreminiom/go-atlassian/pkg/infra/models"
)Step 4: Authenticate with Jira
Step 5: Create an ITSM customer request with custom fields
Step 6: Run the program

Last updated
Was this helpful?