Pipedream · Arazzo Workflow

Pipedream Update Connect Project Settings

Version 1.0.0

Read a project's current settings, apply updates, and confirm the new values.

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

Provider

pipedream

Workflows

update-project-settings
Read, update, and verify a Connect project's settings.
Retrieves the project's current settings, applies the supplied updates, and re-reads the project to confirm the new values.
3 steps inputs: appName, name, projectId, supportEmail outputs: previousName, updatedProject, verifiedName
1
readProject
Retrieve the project to capture its current settings before applying updates.
2
updateProject
Patch the project with the supplied name and Connect display settings.
3
verifyProject
Re-read the project to confirm the updated settings persisted.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Pipedream Update Connect Project Settings
  summary: Read a project's current settings, apply updates, and confirm the new values.
  description: >-
    A settings-management flow for an existing Connect project. The workflow
    retrieves the project to capture its current configuration, patches the
    project with the supplied name and Connect display settings, and retrieves
    it again to confirm the changes persisted. 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: update-project-settings
  summary: Read, update, and verify a Connect project's settings.
  description: >-
    Retrieves the project's current settings, applies the supplied updates, and
    re-reads the project to confirm the new values.
  inputs:
    type: object
    required:
    - projectId
    properties:
      projectId:
        type: string
        description: The project ID, which starts with proj_.
      name:
        type: string
        description: Optional new display name for the project.
      appName:
        type: string
        description: Optional new Connect application display name shown to end users.
      supportEmail:
        type: string
        description: Optional new support email displayed to end users.
  steps:
  - stepId: readProject
    description: >-
      Retrieve the project to capture its current settings before applying
      updates.
    operationId: retrieveProject
    parameters:
    - name: project_id
      in: path
      value: $inputs.projectId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      currentName: $response.body#/name
      currentAppName: $response.body#/app_name
  - stepId: updateProject
    description: >-
      Patch the project with the supplied name and Connect display settings.
    operationId: updateProject
    parameters:
    - name: project_id
      in: path
      value: $inputs.projectId
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.name
        app_name: $inputs.appName
        support_email: $inputs.supportEmail
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      updatedProject: $response.body
  - stepId: verifyProject
    description: >-
      Re-read the project to confirm the updated settings persisted.
    operationId: retrieveProject
    parameters:
    - name: project_id
      in: path
      value: $inputs.projectId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      verifiedName: $response.body#/name
      verifiedAppName: $response.body#/app_name
  outputs:
    previousName: $steps.readProject.outputs.currentName
    updatedProject: $steps.updateProject.outputs.updatedProject
    verifiedName: $steps.verifyProject.outputs.verifiedName

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-update-project-settings-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.