Pipedream · Schema
Webhook
A webhook object
ProCode_API_CompositionWorkflowsConnectMCPEmbedded IntegrationsManaged AuthAI Agents
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique ID of the webhook |
| url | string | The webhook URL |
| signing_key_set | boolean | Whether a signing key has been set for this webhook |
| created_at | integer | The time the webhook was created, in epoch seconds |
| updated_at | integer | The time the webhook was last updated, in epoch seconds |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Webhook",
"title": "Webhook",
"type": "object",
"description": "A webhook object",
"required": [
"id",
"url",
"signing_key_set",
"created_at",
"updated_at"
],
"properties": {
"id": {
"type": "string",
"description": "The unique ID of the webhook"
},
"url": {
"type": "string",
"format": "uri",
"description": "The webhook URL"
},
"signing_key_set": {
"type": "boolean",
"description": "Whether a signing key has been set for this webhook"
},
"created_at": {
"type": "integer",
"description": "The time the webhook was created, in epoch seconds"
},
"updated_at": {
"type": "integer",
"description": "The time the webhook was last updated, in epoch seconds"
}
}
}