Skip to main content

Create Issue

Creates a new issue.

External Documentation

To learn more, visit the Jira documentation.

Basic Parameters

ParameterDescription
Assignee EmailThe email address or the display name of the assignee. The string can match the prefix of the attribute's value.
For example, query=john matches a user with a displayName of John Smith and a user with an emailAddress of johnson@example.com.
Therefore, it's recommended to use the user's email to prevent the string from matching multiple values, which is ambiguous and will cause the action to fail.
DescriptionDescription of the issue.
Issue TypeThe type of the issue. The type must be defined in your Jira workspace.
Project KeyThe project's key.
Reporter EmailThe email address or the display name of the reporter. The string can match the prefix of the attribute's value.
For example, query=john matches a user with a displayName of John Smith and a user with an emailAddress of johnson@example.com.
Therefore, it's recommended to use the user's email to prevent the string from matching multiple values, which is ambiguous and will cause the action to fail.
SummarySummary of the issue.

Advanced Parameters

ParameterDescription
ComponentsA list of Components that need to be set up in the new issue.

Example input:
[
{
"id": "10000"
},
{
"name": "Component 1"
}
]
Custom FieldsCustom fields in JSON form, where the key is the name of the custom field mapped to it's value.

Example input:
{
"foobar": 10,
"incident_status": "resolved"
}
Will set the custom field named "foobar" to 10 and "incident_status" to "resolved".
LabelsA comma seperated list of labels for the issue.
TransitionDetails of a transition. Required when performing a transition, optional when creating or editing an issue.

Example input:
{
"id": "<string>",
"looped": true
}

Example Output

{
"id": "10009",
"key": "TEST-10",
"self": "https://example.org"
}

Workflow Library Example

Create an Amazon S3 Bucket with an Approval and Audit Process

Workflow LibraryPreview this Workflow on desktop