Skip to content

Jira

Manage and react to issues in Jira

The Create Issue component creates a new issue in Jira.

  • Task creation: Automatically create tasks from workflow events
  • Bug tracking: Create bugs from error detection systems
  • Feature requests: Generate feature request issues from external inputs
  • Project: The Jira project to create the issue in
  • Issue Type: The type of issue (e.g. Task, Bug, Story)
  • Summary: The issue summary/title
  • Description: Optional description text

Returns the created issue including:

  • id: The issue ID
  • key: The issue key (e.g. PROJ-123)
  • self: API URL for the issue
{
"data": {
"id": "10001",
"key": "PROJ-123",
"self": "https://your-domain.atlassian.net/rest/api/3/issue/10001"
},
"timestamp": "2026-01-19T12:00:00Z",
"type": "jira.issue"
}