Atlassian · Arazzo Workflow

Atlassian Jira Create Project

Version 1.0.0

Create a Jira project and read it back to confirm its details.

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

Provider

atlassian

Workflows

create-project
Create a Jira project and confirm its details.
Creates a project and reads it back by key to confirm the created id, name and lead.
2 steps inputs: assigneeType, authorization, description, key, leadAccountId, name, projectTypeKey outputs: projectId, projectKey
1
createProject
Create the project with the supplied key, name, type and lead.
2
getProject
Read the created project back to confirm its details.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Atlassian Jira Create Project
  summary: Create a Jira project and read it back to confirm its details.
  description: >-
    Creates a new Jira project from a key, name, project type and lead account,
    then reads the project back to confirm its id, key and lead. Each step
    inlines its Basic authentication header, request body and documented success
    criteria so the flow is self-describing.
  version: 1.0.0
sourceDescriptions:
- name: projectsApi
  url: ../openapi/atlassian-projects-api-openapi.yml
  type: openapi
workflows:
- workflowId: create-project
  summary: Create a Jira project and confirm its details.
  description: >-
    Creates a project and reads it back by key to confirm the created id, name
    and lead.
  inputs:
    type: object
    required:
    - authorization
    - key
    - name
    - projectTypeKey
    - leadAccountId
    properties:
      authorization:
        type: string
        description: HTTP Basic auth header value.
      key:
        type: string
        description: The project key (e.g. "EX").
      name:
        type: string
        description: The project display name.
      projectTypeKey:
        type: string
        description: The project type key (e.g. "business" or "software").
      leadAccountId:
        type: string
        description: The accountId of the project lead.
      description:
        type: string
        description: An optional project description.
      assigneeType:
        type: string
        description: The default assignee type, PROJECT_LEAD or UNASSIGNED.
  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
        description: $inputs.description
        assigneeType: $inputs.assigneeType
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      projectId: $response.body#/id
      projectKey: $response.body#/key
  - stepId: getProject
    description: Read the created project back to confirm its details.
    operationId: atlassianGetproject
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: projectIdOrKey
      in: path
      value: $steps.createProject.outputs.projectKey
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      id: $response.body#/id
      name: $response.body#/name
      lead: $response.body#/lead/accountId
  outputs:
    projectId: $steps.createProject.outputs.projectId
    projectKey: $steps.createProject.outputs.projectKey

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-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.