Atlassian · Arazzo Workflow

Atlassian Jira Create Project and First Issue

Version 1.0.0

Stand up a new Jira project and seed it with its first issue.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub CodeCollaborationPlatformProductivitySoftware DevelopmentArazzoWorkflows

Provider

atlassian

Workflows

create-project-and-first-issue
Create a Jira project and seed it with a first issue.
Creates a project, creates the first issue in it using the returned project id, and reads the issue back to confirm its key.
3 steps inputs: authorization, issueTypeId, key, leadAccountId, name, projectTypeKey, summary outputs: issueKey, projectKey
1
createProject
Create the project with the supplied key, name, type and lead.
2
createIssue
Create the first issue in the newly created project.
3
getIssue
Read the first issue back to confirm its key.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Atlassian Jira Create Project and First Issue
  summary: Stand up a new Jira project and seed it with its first issue.
  description: >-
    Bootstraps a new Jira project from a key, name, type and lead, then creates
    the first issue inside that project and reads the issue back to confirm its
    key. Each step inlines its Basic authentication header, request body and
    documented success criteria.
  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
- name: projectsApi
  url: ../openapi/atlassian-projects-api-openapi.yml
  type: openapi
workflows:
- workflowId: create-project-and-first-issue
  summary: Create a Jira project and seed it with a first issue.
  description: >-
    Creates a project, creates the first issue in it using the returned project
    id, and reads the issue back to confirm its key.
  inputs:
    type: object
    required:
    - authorization
    - key
    - name
    - projectTypeKey
    - leadAccountId
    - issueTypeId
    - summary
    properties:
      authorization:
        type: string
        description: HTTP Basic auth header value.
      key:
        type: string
        description: The project key.
      name:
        type: string
        description: The project display name.
      projectTypeKey:
        type: string
        description: The project type key (e.g. "software").
      leadAccountId:
        type: string
        description: The accountId of the project lead.
      issueTypeId:
        type: string
        description: The id of the issue type for the first issue.
      summary:
        type: string
        description: The summary of the first issue.
  steps:
  - stepId: createProject
    description: Create the project with the supplied key, name, type and lead.
    operationId: atlassianCreateproject
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    requestBody:
      contentType: application/json
      payload:
        key: $inputs.key
        name: $inputs.name
        projectTypeKey: $inputs.projectTypeKey
        leadAccountId: $inputs.leadAccountId
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      projectId: $response.body#/id
      projectKey: $response.body#/key
  - stepId: createIssue
    description: Create the first issue in the newly created project.
    operationId: atlassianCreateissue
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    requestBody:
      contentType: application/json
      payload:
        fields:
          project:
            id: $steps.createProject.outputs.projectId
          issuetype:
            id: $inputs.issueTypeId
          summary: $inputs.summary
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      issueKey: $response.body#/key
  - stepId: getIssue
    description: Read the first issue back to confirm its key.
    operationId: atlassianGetissue
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: issueIdOrKey
      in: path
      value: $steps.createIssue.outputs.issueKey
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      key: $response.body#/key
      summary: $response.body#/fields/summary
  outputs:
    projectKey: $steps.createProject.outputs.projectKey
    issueKey: $steps.createIssue.outputs.issueKey

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-project-and-first-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.