Atlassian · Arazzo Workflow

Atlassian Confluence Create Space and Page

Version 1.0.0

Create a Confluence space, confirm it, then add a first page to it.

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

Provider

atlassian

Workflows

create-space-and-page
Create a Confluence space and seed it with a first page.
Creates a space, confirms it by key, and creates a first page in the new space.
3 steps inputs: authorization, bodyHtml, pageTitle, spaceKey, spaceName outputs: pageId, spaceKey
1
createSpace
Create a new space with the supplied key and name.
2
getSpace
Read the space back by key to confirm it was created.
3
createPage
Create a first page inside the newly created space.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Atlassian Confluence Create Space and Page
  summary: Create a Confluence space, confirm it, then add a first page to it.
  description: >-
    Creates a new Confluence space from a key and name, reads the space back to
    confirm it exists, and creates a first page inside the space with a
    storage-format body. 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: contentApi
  url: ../openapi/atlassian-content-api-openapi.yml
  type: openapi
- name: spaceApi
  url: ../openapi/atlassian-space-api-openapi.yml
  type: openapi
workflows:
- workflowId: create-space-and-page
  summary: Create a Confluence space and seed it with a first page.
  description: >-
    Creates a space, confirms it by key, and creates a first page in the new
    space.
  inputs:
    type: object
    required:
    - authorization
    - spaceKey
    - spaceName
    - pageTitle
    - bodyHtml
    properties:
      authorization:
        type: string
        description: HTTP Basic auth header value.
      spaceKey:
        type: string
        description: The key for the new space.
      spaceName:
        type: string
        description: The display name for the new space.
      pageTitle:
        type: string
        description: The title of the first page.
      bodyHtml:
        type: string
        description: The first page body in storage (HTML) format.
  steps:
  - stepId: createSpace
    description: Create a new space with the supplied key and name.
    operationId: atlassianCreatespace
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    requestBody:
      contentType: application/json
      payload:
        key: $inputs.spaceKey
        name: $inputs.spaceName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      spaceKey: $response.body#/key
      spaceId: $response.body#/id
  - stepId: getSpace
    description: Read the space back by key to confirm it was created.
    operationId: atlassianGetspace
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: spaceKey
      in: path
      value: $steps.createSpace.outputs.spaceKey
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      key: $response.body#/key
      name: $response.body#/name
  - stepId: createPage
    description: Create a first page inside the newly created space.
    operationId: atlassianCreatecontent
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    requestBody:
      contentType: application/json
      payload:
        type: page
        title: $inputs.pageTitle
        space:
          key: $steps.createSpace.outputs.spaceKey
        body:
          storage:
            value: $inputs.bodyHtml
            representation: storage
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      pageId: $response.body#/id
      title: $response.body#/title
  outputs:
    spaceKey: $steps.createSpace.outputs.spaceKey
    pageId: $steps.createPage.outputs.pageId

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-space-and-page-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.