Pipedream · Schema

SetWebhookOpts

Request options for setting a webhook URL

ProCode_API_CompositionWorkflowsConnectMCPEmbedded IntegrationsManaged AuthAI Agents

Properties

Name Type Description
url string The webhook URL to set
View JSON Schema on GitHub

JSON Schema

pipedream-setwebhookopts-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SetWebhookOpts",
  "title": "SetWebhookOpts",
  "type": "object",
  "description": "Request options for setting a webhook URL",
  "required": [
    "url"
  ],
  "properties": {
    "url": {
      "type": "string",
      "format": "uri",
      "description": "The webhook URL to set"
    }
  }
}