WebhookInfo
Webhook response (hides secret)
Properties
| Property | Type | Required | Description |
|---|---|---|---|
created_at |
string | Yes | |
created_by |
string | Yes | |
enabled |
boolean | Yes | |
events |
Array<string> | Yes | |
id |
string | Yes | |
name |
string | Yes | |
organization_id |
string | Yes | |
project_id |
string,null | No | |
url |
string | Yes |
View JSON Schema
{
"type": "object",
"description": "Webhook response (hides secret)",
"required": [
"id",
"organization_id",
"name",
"url",
"events",
"enabled",
"created_by",
"created_at"
],
"properties": {
"created_at": {
"type": "string",
"format": "date-time"
},
"created_by": {
"type": "string",
"format": "uuid"
},
"enabled": {
"type": "boolean"
},
"events": {
"type": "array",
"items": {
"type": "string"
}
},
"id": {
"type": "string",
"format": "uuid"
},
"name": {
"type": "string"
},
"organization_id": {
"type": "string",
"format": "uuid"
},
"project_id": {
"type": [
"string",
"null"
],
"format": "uuid"
},
"url": {
"type": "string"
}
}
}