Pipedream · Arazzo Workflow

Pipedream Provision a Connect Project

Version 1.0.0

Create a Connect project, confirm it, and read its app configuration info.

1 workflow 1 source API 1 provider
View Spec View on GitHub Pro-Code-API-CompositionWorkflowsConnectMCPEmbedded IntegrationsManaged AuthAI AgentsArazzoWorkflows

Provider

pipedream

Workflows

provision-project
Create a Connect project and confirm its configuration.
Creates a new project, retrieves it to confirm its settings, then reads its project info to list the apps configured for it.
3 steps inputs: appName, environment, name, supportEmail outputs: apps, project, projectId
1
createProject
Create a new Connect project for the authenticated workspace with the supplied name and optional Connect display settings.
2
retrieveProject
Retrieve the newly created project to confirm its persisted settings.
3
getProjectInfo
Read the project info to surface the apps configured for the new project.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Pipedream Provision a Connect Project
  summary: Create a Connect project, confirm it, and read its app configuration info.
  description: >-
    A bootstrap flow for a new Pipedream Connect project. The workflow creates a
    project for the authenticated workspace, retrieves it to confirm its
    settings, and reads the project info to surface the apps configured for it.
    Every step spells out its request inline so the flow can be read and
    executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: projectsApi
  url: ../openapi/pipedream-projects-api-openapi.yml
  type: openapi
workflows:
- workflowId: provision-project
  summary: Create a Connect project and confirm its configuration.
  description: >-
    Creates a new project, retrieves it to confirm its settings, then reads its
    project info to list the apps configured for it.
  inputs:
    type: object
    required:
    - environment
    - name
    properties:
      environment:
        type: string
        description: The Connect environment (development or production) for the info read.
      name:
        type: string
        description: The display name of the new project.
      appName:
        type: string
        description: Optional display name for the Connect application shown to end users.
      supportEmail:
        type: string
        description: Optional support email displayed to end users.
  steps:
  - stepId: createProject
    description: >-
      Create a new Connect project for the authenticated workspace with the
      supplied name and optional Connect display settings.
    operationId: createProject
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.name
        app_name: $inputs.appName
        support_email: $inputs.supportEmail
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      projectId: $response.body#/id
      projectName: $response.body#/name
  - stepId: retrieveProject
    description: >-
      Retrieve the newly created project to confirm its persisted settings.
    operationId: retrieveProject
    parameters:
    - name: project_id
      in: path
      value: $steps.createProject.outputs.projectId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      project: $response.body
  - stepId: getProjectInfo
    description: >-
      Read the project info to surface the apps configured for the new project.
    operationId: retrieveProjectInfo
    parameters:
    - name: project_id
      in: path
      value: $steps.createProject.outputs.projectId
    - name: x-pd-environment
      in: header
      value: $inputs.environment
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      apps: $response.body#/apps
  outputs:
    projectId: $steps.createProject.outputs.projectId
    project: $steps.retrieveProject.outputs.project
    apps: $steps.getProjectInfo.outputs.apps

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/pipedream-provision-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.