Module jira.servicemanagement

ballerinax/jira.servicemanagement Ballerina library

1.3.1

Overview

This is a generated connector for Jira Service Management Cloud REST API OpenAPI specification.

The Jira Service Management Cloud REST APIs are for developers who want to integrate Jira Service Management with other applications or administrators that want to automate their workflows and processes.

Prerequisites

Before using this connector in your Ballerina application, complete the following:

  • Create Atlassian Account
  • Obtaining tokens
    1. Log into Atlassian Account
    2. If you are using basic authentication navigate to Account Settings -> Security and click -> Create and manage API tokens and create API token. If you are using OAuth authentication navigate to Account Settings -> Security and click -> Manage two-step verification and create and obtain client credentials

Quickstart

Step 1: Import Jira module

First, import the ballerinax/jira.servicemanagement module into the Ballerina project.

Copy
import ballerinax/jira.servicemanagement as jira;

Step 2: Configure the connection credentials.

Copy
jira:ClientConfig clientConfig = {
    auth : { 
        username : "<your_atlassian_account_email>", 
        password : "<atlassian_account_api_key>"
    }
};

jira:Client myclient = check new (clientConfig, "https://<your_domain>.atlassian.net");

Step 3: Invoke connector operation

  1. You can use this function to get customers by providing service desk Id as a parameter.
    Copy
    jira:PagedDTOUserDTO result = check myclient->getCustomers("<ServiceDeskId>");
    log:printInfo(result.toString());
  2. Use bal run command to compile and run the Ballerina program

Import

import ballerinax/jira.servicemanagement;Copy

Metadata

Released date: 12 months ago

Version: 1.3.1

License: Apache-2.0


Compatibility

Platform: any

Ballerina version: 2201.4.1

GraalVM compatible: Yes


Pull count

Total: 1

Current verison: 1


Weekly downloads


Source repository


Keywords

Support//Customer Support

Cost/Freemium


Contributors

Other versions