Jira

API Docs

Generate an issue into an existing Jira Project.

jira screenshot

Templates

Read more on GitHub

body.liquid


{% capture alert %}
sentAt: {{sentAt}}
organizationId: {{organizationId}}
organizationName: {{organizationName}}
organizationUrl: {{organizationUrl}}
networkId: {{networkId}}
networkName: {{networkName}}
networkUrl: {{networkUrl}}
networkTags: {% if networkTags %}{{ networkTags | jsonify}}{% else %}[]{% endif %}
deviceSerial: {{deviceSerial}}
deviceMac: {{deviceMac}}
deviceName: {{deviceName}}
deviceUrl: {{deviceUrl}}
deviceTags: {{ deviceTags | jsonify }}
deviceModel: {{deviceModel}}
alertId: {{alertId}}
alertType: {{alertType}}
alertTypeId: {{alertTypeId}}
alertLevel: {{alertLevel}}
occurredAt: {{occurredAt}}
---
**Alert Data**

> {{alertData | json_markdown}}

{% endcapture %}
{% assign alertString = alert | jsonify %}
{
    "fields": {
       "project":
       {
          "key": "TP"
       },
       "summary": "{{alertType}}",
       "description": {{alertString}},
       "issuetype": {
          "name": "Bug"
       }
   }
}

headers.liquid


{
    "Authorization": "{{sharedSecret}}"
}