UpdateWebhookRequest
Request to update a webhook
Properties
| Property | Type | Required | Description |
|---|---|---|---|
enabled |
boolean,null | No | |
events |
array,null | No | |
name |
string,null | No | |
url |
string,null | No |
View JSON Schema
{
"type": "object",
"description": "Request to update a webhook",
"properties": {
"enabled": {
"type": [
"boolean",
"null"
]
},
"events": {
"type": [
"array",
"null"
],
"items": {
"type": "string"
}
},
"name": {
"type": [
"string",
"null"
]
},
"url": {
"type": [
"string",
"null"
]
}
}
}