Quickstart Guide

This page is about Easy Integrations for Jira Cloud. Using Jira On-Prem? Click the On-Prem button above.

Welcome to Easy Integrations for Jira Cloud, a powerful tool that allows you to effortlessly manage an unlimited number of integrations. This guide will walk you through the process of creating your first integration step by step, ensuring a smooth start to your integration journey.

Step 1: Create a Credential

Begin by establishing a credential, a vital step for authorizing your REST API integration. This step can be skipped if your REST API does not require authorization.

  1. Navigate to Apps > Manage your apps > Easy Integrations configuration > Credentials.

  2. Click Create.

  3. Provide a credential name. This name will be used later to select a credential while configuring an integration.

  4. Select the target Authorization Type and fill in the required fills for the authorization type.


Step 2: Make an Integration

After you have completed the credential for the authorization, you can create a Rest API integration.  

  1. Navigate to Apps > Manage your apps > Easy Integrations configuration > Listeners.

  2. Click Add listener.

  3. Give the listener a name.

  4. Click Add event and select the events to track (e.g., "Issue updated" and JQL: "issuetype = Task").

  5. Click Add action and select Call Rest API.

  6. Give the action a name.

  7. Write the action parameters script. Check out an example below:

Action parameters:

var parameters = {}; parameters['issue summary'] = data.event.issue.fields.summary; parameters['issue status'] = data.event.issue.fields.status.name; return parameters;
  1. Write the URL.

  2. Select the HTTP Method.

  3. Write headers. For example:

Action parameters:

Accept=*/* Cache-Control=no-cache Content-Type=application/json
  1. Select the Authorization type and, if it's not None, select the Credential.

  2. Write the REST API body in JSON format. Here's an example body, where {{issue summary}} and {{issue status}} are replaced by action parameters:

Action parameters:

{ "name": "{{issue summary}}", "attributes": [ { "attributeId": "41", "attributeValue": "{{issue status}}" }, { "attributeId": "121", "attributeValue": 12.5 } ], "systemFields": [ { "fieldName": "asset.status", "value": "1" }, { "fieldName": "asset.substatus", "value": "1" } ], "formId": 148, "attachments": null }
  1. Click OK to add the action.

  2. Click Submit to save the Listener.

Now it's time to update an issue! Please note that the issue must be of the Task issue type. To observe what happened, you can navigate to Apps > Manage your apps > Easy Integrations configuration > Execution Logs. Happy integrating!