Pipedream · Arazzo Workflow

Pipedream Offboard an External User

Version 1.0.0

List a user's accounts and deployed triggers, then delete the user and all their resources.

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

Provider

pipedream

Workflows

user-offboarding
Survey and then fully remove an external user and their resources.
Lists the external user's accounts and deployed triggers for the record, then deletes the user and all associated resources.
3 steps inputs: environment, externalUserId, projectId outputs: accounts, deleted, deployedTriggers
1
listUserAccounts
List the external user's connected accounts so the caller has a record of the accounts that will be removed.
2
listUserTriggers
List the external user's deployed triggers so the caller has a record of the event sources that will be removed.
3
deleteUser
Delete the external user along with all their associated accounts and resources. This is destructive and cannot be undone.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Pipedream Offboard an External User
  summary: List a user's accounts and deployed triggers, then delete the user and all their resources.
  description: >-
    A full offboarding flow for an external user in Pipedream Connect. The
    workflow surveys the user's connected accounts and deployed triggers so the
    caller has a record of what will be removed, then deletes the external user
    along with all their associated accounts and resources. The final step is
    destructive and irreversible. 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: accountsApi
  url: ../openapi/pipedream-accounts-api-openapi.yml
  type: openapi
- name: deployedTriggersApi
  url: ../openapi/pipedream-deployed-triggers-api-openapi.yml
  type: openapi
workflows:
- workflowId: user-offboarding
  summary: Survey and then fully remove an external user and their resources.
  description: >-
    Lists the external user's accounts and deployed triggers for the record,
    then deletes the user and all associated resources.
  inputs:
    type: object
    required:
    - projectId
    - environment
    - externalUserId
    properties:
      projectId:
        type: string
        description: The project ID, which starts with proj_.
      environment:
        type: string
        description: The Connect environment (development or production).
      externalUserId:
        type: string
        description: The end user identifier being offboarded.
  steps:
  - stepId: listUserAccounts
    description: >-
      List the external user's connected accounts so the caller has a record of
      the accounts that will be removed.
    operationId: listAccounts
    parameters:
    - name: project_id
      in: path
      value: $inputs.projectId
    - name: x-pd-environment
      in: header
      value: $inputs.environment
    - name: external_user_id
      in: query
      value: $inputs.externalUserId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      accounts: $response.body#/data
  - stepId: listUserTriggers
    description: >-
      List the external user's deployed triggers so the caller has a record of
      the event sources that will be removed.
    operationId: listDeployedTriggers
    parameters:
    - name: project_id
      in: path
      value: $inputs.projectId
    - name: x-pd-environment
      in: header
      value: $inputs.environment
    - name: external_user_id
      in: query
      value: $inputs.externalUserId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      deployedTriggers: $response.body#/data
  - stepId: deleteUser
    description: >-
      Delete the external user along with all their associated accounts and
      resources. This is destructive and cannot be undone.
    operationId: deleteUserExternalUser
    parameters:
    - name: project_id
      in: path
      value: $inputs.projectId
    - name: x-pd-environment
      in: header
      value: $inputs.environment
    - name: external_user_id
      in: path
      value: $inputs.externalUserId
    successCriteria:
    - condition: $statusCode == 204
    outputs:
      deleted: $statusCode
  outputs:
    accounts: $steps.listUserAccounts.outputs.accounts
    deployedTriggers: $steps.listUserTriggers.outputs.deployedTriggers
    deleted: $steps.deleteUser.outputs.deleted

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-user-offboarding-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.