Skip to main content

Create Jira tickets from Streamlit forms with webhook & REST API

Workflow preview

Workflow preview
100%
Create Jira tickets from Streamlit forms with webhook & REST API preview
Open on n8n.io

Important notice

This workflow is provided as-is. Please review and test before using in production.

1. Workflow Overview

Description Automated workflow that creates Jira issues directly from Streamlit form submissions. Receives webhook data, validates and transforms it to Jira's API schema, creates the issue, and ret...

Best for

  • Project Management automation workflows
  • advanced n8n builders looking for reusable templates

Tools used

n8n-nodes-base.webhook, n8n-nodes-base.set, n8n-nodes-base.httprequest, n8n-nodes-base.code, n8n-nodes-base.if, n8n-nodes-base.stickynote

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Yassin Zehar.

Original n8n.io source

1.1 Workflow description

Title
Create Jira tickets from Streamlit forms with webhook & REST API
Workflow name
Create Jira tickets from Streamlit forms with webhook & REST API

Description

Automated workflow that creates Jira issues directly from Streamlit form submissions. Receives webhook data, validates and transforms it to Jira's API schema, creates the issue, and returns the ticket details to the frontend application.

Context

Bridges the gap between lightweight Streamlit prototypes and enterprise Jira workflows. Enables rapid ticket creation while maintaining Jira as the authoritative source of truth. Includes safety mechanisms to prevent duplicate submissions and malformed requests.

Target Users

  • Product Managers building internal request portals.
  • Engineering Managers creating demo applications. Teams requiring instant Jira integration without complex UI development.
  • Project Manager using Jira pour mangement and reporting.
  • Organizations wanting controlled ticket creation without exposing Jira directly.

Technical Requirements

  • n8n instance (cloud or self-hosted) with webhook capabilities
  • Jira Cloud project with API token and issue creation permissions
  • Streamlit application configured to POST to n8n webhook endpoint
  • Optional: Custom field IDs for Story Points (typically customfield_10016)

Workflow Steps

  • Webhook Trigger - Receives POST from Streamlit with ticket payload.
  • Deduplication Guard - Filters out ping requests and rapid duplicate submissions.
  • Data Validation - Ensures required fields are present and properly formatted.
  • Schema Transformation - Maps Streamlit fields to Jira API structure.
  • Jira API Call - Creates issue via REST API with error handling.
  • Response Formation - Returns success status with issue key and URL.

Key Features

  • Duplicate submission prevention.
  • Rich text description formatting for Jira.
  • Configurable priority and issue type mapping.
  • Story points integration for agile workflows.
  • Comprehensive error handling and logging.
  • Clean JSON response for frontend feedback.

Validation Testing

  • Ping/test requests are ignored without creating issues.
  • First submission creates Jira ticket with proper formatting.
  • Rapid resubmission is blocked to prevent duplicates.
  • All field types (priority, labels, due dates, story points) map correctly.
  • Error responses are handled gracefully.

Expected Output

Implementation Notes

  • Jira Cloud requires accountId for assignee (not username).
  • Date format must be YYYY-MM-DD for due dates.
  • Story Points field ID varies by Jira configuration.
  • Enable response output in HTTP node for debugging.
  • Consider rate limiting for high-volume scenarios.

Tutorial video:

Watch the Youtube Tutorial video

How it works

⏰ Trigger: Webhook fires when the app submits. 🧹 Guard: Ignore pings/invalid, deduplicate rapid repeats. 🧱 Prepare: Normalize to Jira’s field model (incl. Atlassian doc description). 🧾 Create: POST to /rest/api/3/issue and capture the key. 🔁 Respond: Send { ok, jiraKey, url } back to Streamlit for instant UI feedback.

About me :

I’m Yassin a Project & Product Manager Scaling tech products with data-driven project management. 📬 Feel free to connect with me on Linkedin

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - Webhook streamlit

Type / Role
n8n-nodes-base.webhook - webhook
Config choices
Version 2.1

Block 2 - jira response

Type / Role
n8n-nodes-base.set - set
Config choices
Version 3.4

Block 3 - Jira HTTP request

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 4 - raw data from streamlit

Type / Role
n8n-nodes-base.set - set
Config choices
Version 3.4

Block 5 - Process streamlit data

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 6 - Processed data

Type / Role
n8n-nodes-base.set - set
Config choices
Version 3.4

Block 7 - Result

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 8 - anti double

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 9 - blocked request

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 10 - if for doubles

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.2

Block 11 - Sticky Note1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 12 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 13 - Sticky Note3

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 14 - Sticky Note2

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 15 - Sticky Note4

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 16 - Sticky Note5

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

3. Summary Table

Workflow Create Jira tickets from Streamlit forms with webhook & REST API
Complexity advanced
Nodes 16
Categories Project Management
Author Yassin Zehar
Published 02 Sept 2025

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/8156/8156.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Create Jira tickets from Streamlit forms with webhook & REST API do?

Description Automated workflow that creates Jira issues directly from Streamlit form submissions. Receives webhook data, validates and transforms it to Jira's API schema, creates the issue, and ret...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Project Management use case.