Atlassian · Arazzo Workflow

Atlassian Jira Create and Assign Issue

Version 1.0.0

Create a Jira issue, assign it to a user, then read it back to confirm the assignee.

1 workflow 1 source API 1 provider
View Spec View on GitHub CodeCollaborationPlatformProductivitySoftware DevelopmentArazzoWorkflows

Provider

atlassian

Workflows

create-and-assign-issue
Create a Jira issue and assign it to a user.
Creates an issue, assigns it to the supplied accountId, and confirms the assignment by reading the issue back.
3 steps inputs: assigneeAccountId, authorization, issueTypeId, projectId, summary outputs: assigneeAccountId, issueKey
1
createIssue
Create a new issue in the supplied project.
2
assignIssue
Assign the newly created issue to the supplied accountId.
3
getIssue
Read the issue back to confirm the assignee was set.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Atlassian Jira Create and Assign Issue
  summary: Create a Jira issue, assign it to a user, then read it back to confirm the assignee.
  description: >-
    Creates a new Jira issue, assigns it to a specific account by accountId, and
    reads the issue back to confirm the assignee was set. Each step inlines its
    Basic authentication header, request body and documented success criteria so
    the flow is self-describing.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-900.30
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-900.30
      capability_name: Project Management
      spec: atlassian-issues-api-openapi.yml
      confidence: 0.7
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: issuesApi
  url: ../openapi/atlassian-issues-api-openapi.yml
  type: openapi
workflows:
- workflowId: create-and-assign-issue
  summary: Create a Jira issue and assign it to a user.
  description: >-
    Creates an issue, assigns it to the supplied accountId, and confirms the
    assignment by reading the issue back.
  inputs:
    type: object
    required:
    - authorization
    - projectId
    - issueTypeId
    - summary
    - assigneeAccountId
    properties:
      authorization:
        type: string
        description: HTTP Basic auth header value.
      projectId:
        type: string
        description: The numeric id of the project to create the issue in.
      issueTypeId:
        type: string
        description: The id of the issue type.
      summary:
        type: string
        description: The issue summary line.
      assigneeAccountId:
        type: string
        description: The Atlassian accountId of the user to assign the issue to.
  steps:
  - stepId: createIssue
    description: Create a new issue in the supplied project.
    operationId: atlassianCreateissue
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    requestBody:
      contentType: application/json
      payload:
        fields:
          project:
            id: $inputs.projectId
          issuetype:
            id: $inputs.issueTypeId
          summary: $inputs.summary
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      issueKey: $response.body#/key
  - stepId: assignIssue
    description: Assign the newly created issue to the supplied accountId.
    operationId: atlassianAssignissue
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: issueIdOrKey
      in: path
      value: $steps.createIssue.outputs.issueKey
    requestBody:
      contentType: application/json
      payload:
        accountId: $inputs.assigneeAccountId
    successCriteria:
    - condition: $statusCode == 204
    outputs:
      statusCode: $statusCode
  - stepId: getIssue
    description: Read the issue back to confirm the assignee was set.
    operationId: atlassianGetissue
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: issueIdOrKey
      in: path
      value: $steps.createIssue.outputs.issueKey
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      assigneeAccountId: $response.body#/fields/assignee/accountId
  outputs:
    issueKey: $steps.createIssue.outputs.issueKey
    assigneeAccountId: $steps.getIssue.outputs.assigneeAccountId

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/atlassian-create-and-assign-issue-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.