Webex · Schema
EventTypesResponse
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the event type. Consists of the resource and the action which occurred on it, separated by a colon. Use when registering a subscription. |
| resource | string | The resource to which the event type belongs. |
| action | string | The action being taken on the resource in the event. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/EventTypesResponse",
"title": "EventTypesResponse",
"required": [
"action",
"name",
"resource"
],
"type": "object",
"properties": {
"name": {
"maxLength": 64,
"minLength": 4,
"type": "string",
"description": "The name of the event type. Consists of the resource and the action which occurred on it, separated by a colon. Use when registering a subscription.",
"example": "agent:login"
},
"resource": {
"maxLength": 64,
"minLength": 4,
"type": "string",
"description": "The resource to which the event type belongs.",
"example": "agent"
},
"action": {
"maxLength": 64,
"minLength": 4,
"type": "string",
"description": "The action being taken on the resource in the event.",
"example": "login"
}
}
}