Pipedream · Arazzo Workflow

Pipedream Rotate a Trigger Webhook Signing Key

Version 1.0.0

Retrieve a trigger webhook, then regenerate its signing key and confirm the new key.

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

Provider

pipedream

Workflows

rotate-trigger-webhook-key
Regenerate and verify a deployed trigger webhook's signing key.
Retrieves the trigger webhook, regenerates its signing key, and reads the webhook back to confirm the rotation.
3 steps inputs: environment, externalUserId, projectId, triggerId, webhookId outputs: newWebhook, previousWebhook
1
retrieveWebhook
Retrieve the trigger webhook to capture its current signing key before rotation.
2
regenerateSigningKey
Regenerate the signing key for the webhook so prior keys can no longer verify incoming events.
3
verifyNewKey
Read the webhook back to confirm a new signing key is in place after the rotation.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Pipedream Rotate a Trigger Webhook Signing Key
  summary: Retrieve a trigger webhook, then regenerate its signing key and confirm the new key.
  description: >-
    A secret-rotation flow for a webhook attached to a deployed Connect trigger.
    The workflow retrieves the specific webhook to capture its current signing
    key, regenerates the signing key, and reads the webhook back to confirm the
    new key is in place. 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: deployedTriggersApi
  url: ../openapi/pipedream-deployed-triggers-api-openapi.yml
  type: openapi
workflows:
- workflowId: rotate-trigger-webhook-key
  summary: Regenerate and verify a deployed trigger webhook's signing key.
  description: >-
    Retrieves the trigger webhook, regenerates its signing key, and reads the
    webhook back to confirm the rotation.
  inputs:
    type: object
    required:
    - projectId
    - environment
    - externalUserId
    - triggerId
    - webhookId
    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 the webhook belongs to.
      webhookId:
        type: string
        description: The webhook ID whose signing key is rotated.
  steps:
  - stepId: retrieveWebhook
    description: >-
      Retrieve the trigger webhook to capture its current signing key before
      rotation.
    operationId: retrieveDeployedTriggerWebhook
    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: webhook_id
      in: path
      value: $inputs.webhookId
    - name: external_user_id
      in: query
      value: $inputs.externalUserId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      previousWebhook: $response.body#/data
  - stepId: regenerateSigningKey
    description: >-
      Regenerate the signing key for the webhook so prior keys can no longer
      verify incoming events.
    operationId: regenerateDeployedTriggerWebhookSigningKey
    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: webhook_id
      in: path
      value: $inputs.webhookId
    - name: external_user_id
      in: query
      value: $inputs.externalUserId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      regenerated: $statusCode
  - stepId: verifyNewKey
    description: >-
      Read the webhook back to confirm a new signing key is in place after the
      rotation.
    operationId: retrieveDeployedTriggerWebhook
    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: webhook_id
      in: path
      value: $inputs.webhookId
    - name: external_user_id
      in: query
      value: $inputs.externalUserId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      newWebhook: $response.body#/data
  outputs:
    previousWebhook: $steps.retrieveWebhook.outputs.previousWebhook
    newWebhook: $steps.verifyNewKey.outputs.newWebhook

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-rotate-trigger-webhook-key-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.