The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"name": "Conviro AI Failure to Jira Ticket",
"nodes": [
{
"parameters": {
"httpMethod": "POST",
"path": "conviro-ai-fail",
"responseMode": "onReceived"
},
"name": "Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [
250,
300
]
},
{
"parameters": {
"conditions": {
"string": [
{
"value1": "={{$json[\"event\"]}}",
"value2": "ai.failed"
}
]
}
},
"name": "Filter AI Failed",
"type": "n8n-nodes-base.if",
"typeVersion": 1,
"position": [
450,
300
]
},
{
"parameters": {
"resource": "issue",
"operation": "create",
"project": "YOUR_PROJECT_KEY",
"issueType": "Bug",
"summary": "={{\"[Conviro] AI failure in session \" + $json[\"data\"][\"sessionId\"]}}",
"additionalFields": {
"description": "={{\"AI response generation failed.\\n\\nSession ID: \" + $json[\"data\"][\"sessionId\"] + \"\\nError: \" + ($json[\"data\"][\"error\"] || \"Unknown\") + \"\\nTimestamp: \" + $json[\"timestamp\"] + \"\\n\\nPlease investigate and ensure the chatbot is functioning correctly.\"}}",
"priority": "High",
"labels": [
"conviro",
"ai-failure",
"auto-created"
]
}
},
"name": "Create Jira Issue",
"type": "n8n-nodes-base.jira",
"typeVersion": 1,
"position": [
700,
250
],
"credentials": {
"jiraSoftwareCloudApi": {
"name": "<your credential>"
}
}
}
],
"connections": {
"Webhook": {
"main": [
[
{
"node": "Filter AI Failed",
"type": "main",
"index": 0
}
]
]
},
"Filter AI Failed": {
"main": [
[
{
"node": "Create Jira Issue",
"type": "main",
"index": 0
}
],
[]
]
}
},
"settings": {
"executionOrder": "v1"
}
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
jiraSoftwareCloudApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Conviro AI Failure to Jira Ticket. Uses jira. Webhook trigger; 3 nodes.
Source: https://github.com/useconviro/conviro-cookbook/blob/eb7a8837c53a6fc91cbe9091d51bd862f5442495/automations/n8n/conviro-ai-fail-to-jira.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
Bridge the gap between Monday.com and Jira with this intelligent n8n automation template.
This workflow creates a Jira issue when a new ticket is created in Zendesk. Subsequent comments on the ticket in Zendesk are added as comments to the issue in Jira. Zendesk account and Zendesk credent
This n8n workflow provides a simple yet powerful utility to convert Unix timestamps (seconds since epoch) into the universally recognized ISO 8601 date and time format. This is crucial for harmonizing
This workflow enables seamless, privacy-first capture of meeting notes from your iPhone. It pairs with an iOS Shortcut that leverages Apple’s on-device transcription from the Voice Memos app and optio
EJEMPLO-n8n-redis-end-to-end. Uses redis. Webhook trigger; 4 nodes.