Cisco Webex · Schema
UpdateWebhookRequest
CollaborationCommunicationsMeetingsMessagingTeamsVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Updated name for the webhook. |
| targetUrl | string | Updated target URL for the webhook. |
| secret | string | Updated secret for payload signatures. |
| status | string | Updated webhook status. |
| ownedBy | string | Updated ownership type. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UpdateWebhookRequest",
"title": "UpdateWebhookRequest",
"type": "object",
"required": [
"name",
"targetUrl"
],
"properties": {
"name": {
"type": "string",
"description": "Updated name for the webhook."
},
"targetUrl": {
"type": "string",
"format": "uri",
"description": "Updated target URL for the webhook."
},
"secret": {
"type": "string",
"description": "Updated secret for payload signatures."
},
"status": {
"type": "string",
"description": "Updated webhook status.",
"enum": [
"active",
"inactive"
]
},
"ownedBy": {
"type": "string",
"description": "Updated ownership type."
}
}
}