๐ŸŽผ SymphonyDesk Jira Integration Guide

Step 1 โ€” Open Jira Automation

Go to:

Project Settings โ†’ Automation โ†’ Create Rule

Step 2 โ€” Choose Trigger

Example:

When: Issue created
or
When: Issue transitioned to โ€œAutomation Neededโ€


Step 3 โ€” Add โ€œSend Web Requestโ€ Action

Choose:

Method: POST
URL:

https://api.symphonydesk.io/jobs/execute

Headers:

Content-Type: application/json
x-symphonydesk-key: <provided API key>

Step 4 โ€” Add JSON Body

Paste:

{
  "customer": "Contoso",
  "runbook": "ACT-CreateRemoteMailbox.ps1",
  "issue_key": "{{issue.key}}",
  "params": {
    "DisplayName": "{{issue.fields.customfield_10200}}",
    "UPN": "{{issue.fields.customfield_10201}}",
    "Department": "{{issue.fields.customfield_10203}}"
  }
}

Replace custom fields with your own values.


Step 5 โ€” Save & Publish Rule

Your Jira is now connected to SymphonyDesk.