You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "A webhook endpoint that receives events via HTTP calls, with support for authentication and custom listeners that can be connected to server functions via triggers.",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The unique identifier of the webhook."
},
"name": {
"type": "string",
"description": "The name of the webhook."
},
"description": {
"type": "string",
"description": "A description of the webhook."
},
"context": {
"type": "string",
"description": "The context path for organizing the webhook in the catalog."
},
"url": {
"type": "string",
"format": "uri",
"description": "The webhook endpoint URL."
},
"authentication": {
"type": "object",
"description": "Authentication configuration for the webhook."
},
"state": {
"type": "string",
"enum": ["active", "inactive"],
"description": "The state of the webhook."
},
"createdAt": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the webhook was created."
},
"updatedAt": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the webhook was last updated."