Pipedream · Arazzo Workflow

Pipedream Pause a Deployed Trigger

Version 1.0.0

Retrieve a deployed trigger, then deactivate it via an update.

1 workflow 1 source API 1 provider
View Spec View on GitHub ProCode_API_CompositionWorkflowsConnectMCPEmbedded IntegrationsManaged AuthAI AgentsArazzoWorkflows

Provider

pipedream

Workflows

pause-deployed-trigger
Confirm a deployed trigger and deactivate it.
Retrieves the deployed trigger for the external user, then updates it to set active to false so it stops emitting events.
2 steps inputs: environment, externalUserId, projectId, triggerId outputs: trigger, updatedTrigger
1
retrieveDeployedTrigger
retrieveDeployedTrigger
Retrieve the deployed trigger by ID to confirm it exists and capture its current configuration.
2
deactivateTrigger
updateDeployedTrigger
Update the deployed trigger to set active to false, pausing event emission while preserving its configuration.

Source API Descriptions

Arazzo Workflow Specification

pipedream-pause-deployed-trigger-workflow.yml Raw ↑
arazzo: 1.0.1
info:
  title: Pipedream Pause a Deployed Trigger
  summary: Retrieve a deployed trigger, then deactivate it via an update.
  description: >-
    A lifecycle-management flow for a Pipedream Connect event source. The
    workflow retrieves a deployed trigger by ID to confirm its current state,
    then updates it to set active to false, pausing event emission without
    deleting the source. 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: pipedreamApi
  url: ../openapi/pipedream-openapi.yml
  type: openapi
workflows:
- workflowId: pause-deployed-trigger
  summary: Confirm a deployed trigger and deactivate it.
  description: >-
    Retrieves the deployed trigger for the external user, then updates it to set
    active to false so it stops emitting events.
  inputs:
    type: object
    required:
    - projectId
    - environment
    - externalUserId
    - triggerId
    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 who owns the deployed trigger.
      triggerId:
        type: string
        description: The deployed trigger ID to pause.
  steps:
  - stepId: retrieveDeployedTrigger
    description: >-
      Retrieve the deployed trigger by ID to confirm it exists and capture its
      current configuration.
    operationId: retrieveDeployedTrigger
    parameters:
    - name: project_id
      in: path
      value: $inputs.projectId
    - name: x-pd-environment
      in: header
      value: $inputs.environment
    - name: trigger_id
      in: path
      value: $inputs.triggerId
    - name: external_user_id
      in: query
      value: $inputs.externalUserId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      trigger: $response.body#/data
  - stepId: deactivateTrigger
    description: >-
      Update the deployed trigger to set active to false, pausing event emission
      while preserving its configuration.
    operationId: updateDeployedTrigger
    parameters:
    - name: project_id
      in: path
      value: $inputs.projectId
    - name: x-pd-environment
      in: header
      value: $inputs.environment
    - name: trigger_id
      in: path
      value: $inputs.triggerId
    - name: external_user_id
      in: query
      value: $inputs.externalUserId
    requestBody:
      contentType: application/json
      payload:
        active: false
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      updatedTrigger: $response.body#/data
  outputs:
    trigger: $steps.retrieveDeployedTrigger.outputs.trigger
    updatedTrigger: $steps.deactivateTrigger.outputs.updatedTrigger