WebhookCreated
Webhook created response (includes secret on creation only)
Properties
| Property | Type | Required | Description |
|---|---|---|---|
secret |
string | Yes | The webhook secret - only shown once at creation time |
webhook |
WebhookInfo | Yes |
View JSON Schema
{
"type": "object",
"description": "Webhook created response (includes secret on creation only)",
"required": [
"webhook",
"secret"
],
"properties": {
"secret": {
"type": "string",
"description": "The webhook secret - only shown once at creation time"
},
"webhook": {
"$ref": "#/components/schemas/WebhookInfo"
}
}
}