Apidog · Arazzo Workflow

Apidog Consolidate Sources Into One Project

Version 1.0.0

Import an OpenAPI spec and a Postman Collection into one project, then export the merged result.

1 workflow 1 source API 1 provider
View Spec View on GitHub AI CodingAPI DesignAPI LifecycleAPI TestingCollaborationDesign-FirstDocumentationMCPMockingPlatformArazzoWorkflows

Provider

apidog

Workflows

consolidate-sources-into-project
Merge an OpenAPI spec and a Postman Collection into a single project and export it.
Imports the OpenAPI specification, then imports the Postman Collection into the same project, then exports the merged project as one OpenAPI document.
3 steps inputs: accessToken, apiVersion, openapiInput, postmanCollection, projectId outputs: mergedDocument, openapiEndpointsCreated, postmanEndpointsCreated
1
importOpenApi
Import the OpenAPI/Swagger specification into the project, auto-merging endpoints that already exist.
2
importPostman
Import the Postman Collection into the same project, auto-merging endpoints that already exist.
3
exportMerged
Export the consolidated project as a single OpenAPI 3.0 JSON document.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Apidog Consolidate Sources Into One Project
  summary: Import an OpenAPI spec and a Postman Collection into one project, then export the merged result.
  description: >-
    Combines two different source formats into a single Apidog project: an
    OpenAPI/Swagger specification and a Postman Collection are both imported
    into the same project, and the consolidated project is exported as one
    OpenAPI document. Each step spells out its request inline — including the
    required Apidog API version header and bearer authentication — so the flow
    can be read and executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: importAndExportApi
  url: ../openapi/apidog-import-and-export-api-openapi.yml
  type: openapi
workflows:
- workflowId: consolidate-sources-into-project
  summary: Merge an OpenAPI spec and a Postman Collection into a single project and export it.
  description: >-
    Imports the OpenAPI specification, then imports the Postman Collection into
    the same project, then exports the merged project as one OpenAPI document.
  inputs:
    type: object
    required:
    - accessToken
    - apiVersion
    - projectId
    - openapiInput
    - postmanCollection
    properties:
      accessToken:
        type: string
        description: Apidog personal API access token used as the Bearer Token.
      apiVersion:
        type: string
        description: The Apidog API version header value (e.g. 2024-03-28).
      projectId:
        type: integer
        description: The project ID to consolidate both sources into.
      openapiInput:
        type: string
        description: The OpenAPI/Swagger specification as a JSON or YAML string.
      postmanCollection:
        type: string
        description: The Postman Collection v2 data as a stringified JSON string.
  steps:
  - stepId: importOpenApi
    description: >-
      Import the OpenAPI/Swagger specification into the project, auto-merging
      endpoints that already exist.
    operationId: importOpenApiData
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: X-Apidog-Api-Version
      in: header
      value: $inputs.apiVersion
    - name: projectId
      in: path
      value: $inputs.projectId
    requestBody:
      contentType: application/json
      payload:
        input: $inputs.openapiInput
        options:
          endpointOverwriteBehavior: AUTO_MERGE
          schemaOverwriteBehavior: AUTO_MERGE
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      openapiEndpointsCreated: $response.body#/data/endpoint/created
  - stepId: importPostman
    description: >-
      Import the Postman Collection into the same project, auto-merging
      endpoints that already exist.
    operationId: importPostmanCollectionData
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: X-Apidog-Api-Version
      in: header
      value: $inputs.apiVersion
    - name: projectId
      in: path
      value: $inputs.projectId
    requestBody:
      contentType: application/json
      payload:
        input: $inputs.postmanCollection
        options:
          endpointOverwriteBehavior: AUTO_MERGE
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      postmanEndpointsCreated: $response.body#/data/endpoint/created
  - stepId: exportMerged
    description: >-
      Export the consolidated project as a single OpenAPI 3.0 JSON document.
    operationId: exportOpenApiData
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: X-Apidog-Api-Version
      in: header
      value: $inputs.apiVersion
    - name: projectId
      in: path
      value: $inputs.projectId
    requestBody:
      contentType: application/json
      payload:
        scope: ALL
        oasVersion: '3.0'
        exportFormat: JSON
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      mergedDocument: $response.body#/data
  outputs:
    openapiEndpointsCreated: $steps.importOpenApi.outputs.openapiEndpointsCreated
    postmanEndpointsCreated: $steps.importPostman.outputs.postmanEndpointsCreated
    mergedDocument: $steps.exportMerged.outputs.mergedDocument

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/apidog-consolidate-sources-into-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.