Postman · Arazzo Workflow

Postman Bootstrap a Workspace

Version 1.0.0

Create a workspace, then seed it with a collection and an environment.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub AI Agent BuilderAI AgentsAPI CatalogAPI ClientAPI DesignAPI DevelopmentAPI DocumentationAPI GovernanceAPI LifecycleAPI MonitoringAPI NetworkAPI PlatformAPI TestingAudit LogsAutomationCI/CDCollaborationCollectionComplianceDiscoveryEnvironmentsFlowsGraphQLgRPCHTTPInsightsMCPMCP GeneratorMock ServersMockingMonitorsNewmanOpenAPIPlatformPrivate API NetworkPublic API NetworkSecret ScanningSpec HubSpecificationsSSOTestingVaultWebSocketWorkflowsWorkspacesArazzoWorkflows

Provider

postman

Workflows

bootstrap-workspace
Provision a workspace with a starter collection and environment.
Creates a new workspace, then creates a collection and an environment inside that workspace, chaining the new workspace ID into both downstream calls.
3 steps inputs: collectionName, environmentName, workspaceDescription, workspaceName, workspaceType outputs: collectionId, collectionUid, environmentId, environmentUid, workspaceId
1
createWorkspace
Create the workspace that will own the collection and environment.
2
createCollection
Create a starter collection inside the new workspace using the minimal v2.1.0 collection schema.
3
createEnvironment
Create an environment in the same workspace so the collection's requests have variables to resolve against.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Postman Bootstrap a Workspace
  summary: Create a workspace, then seed it with a collection and an environment.
  description: >-
    The canonical way to stand up a new Postman working area from scratch. The
    workflow creates a team workspace, creates a starter collection scoped to
    that workspace, and creates a matching environment in the same workspace so
    requests have variables to resolve against. Every step spells out its
    request inline so the flow can be read and executed without opening the
    underlying OpenAPI descriptions.
  version: 1.0.0
sourceDescriptions:
- name: collectionsApi
  url: ../openapi/postman-collections-api-openapi.yml
  type: openapi
- name: environmentsApi
  url: ../openapi/postman-environments-api-openapi.yml
  type: openapi
- name: workspacesApi
  url: ../openapi/postman-workspaces-api-openapi.yml
  type: openapi
workflows:
- workflowId: bootstrap-workspace
  summary: Provision a workspace with a starter collection and environment.
  description: >-
    Creates a new workspace, then creates a collection and an environment inside
    that workspace, chaining the new workspace ID into both downstream calls.
  inputs:
    type: object
    required:
    - workspaceName
    - collectionName
    - environmentName
    properties:
      workspaceName:
        type: string
        description: The name of the workspace to create.
      workspaceType:
        type: string
        description: The workspace type (personal, team, private, public, partner).
        default: team
      workspaceDescription:
        type: string
        description: An optional description for the workspace.
      collectionName:
        type: string
        description: The name of the starter collection to create.
      environmentName:
        type: string
        description: The name of the environment to create.
  steps:
  - stepId: createWorkspace
    description: >-
      Create the workspace that will own the collection and environment.
    operationId: createWorkspace
    requestBody:
      contentType: application/json
      payload:
        workspace:
          name: $inputs.workspaceName
          type: $inputs.workspaceType
          description: $inputs.workspaceDescription
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      workspaceId: $response.body#/workspace/id
  - stepId: createCollection
    description: >-
      Create a starter collection inside the new workspace using the minimal
      v2.1.0 collection schema.
    operationId: $sourceDescriptions.collectionsApi.createCollection
    parameters:
    - name: workspace
      in: query
      value: $steps.createWorkspace.outputs.workspaceId
    requestBody:
      contentType: application/json
      payload:
        collection:
          info:
            name: $inputs.collectionName
            schema: https://schema.getpostman.com/json/collection/v2.1.0/collection.json
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      collectionId: $response.body#/collection/id
      collectionUid: $response.body#/collection/uid
  - stepId: createEnvironment
    description: >-
      Create an environment in the same workspace so the collection's requests
      have variables to resolve against.
    operationId: $sourceDescriptions.environmentsApi.createEnvironment
    parameters:
    - name: workspace
      in: query
      value: $steps.createWorkspace.outputs.workspaceId
    requestBody:
      contentType: application/json
      payload:
        environment:
          name: $inputs.environmentName
          values:
          - key: baseUrl
            value: https://api.example.com
            type: default
            enabled: true
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      environmentId: $response.body#/environment/id
      environmentUid: $response.body#/environment/uid
  outputs:
    workspaceId: $steps.createWorkspace.outputs.workspaceId
    collectionId: $steps.createCollection.outputs.collectionId
    collectionUid: $steps.createCollection.outputs.collectionUid
    environmentId: $steps.createEnvironment.outputs.environmentId
    environmentUid: $steps.createEnvironment.outputs.environmentUid

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/postman-bootstrap-workspace-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.