Webex · Schema
PersonalizedAIRoutingDTO
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| enable | boolean | Used to toggle the state of the Personalized AI Routing configuration from active to inactive and vice-versa. Mandatory for create/update operation. |
| cjdsWorkspaceId | string | Id of the CJDS workspace id to be used for model training. |
| cjdsProfileTemplateId | string | Id of the CJDS Profile template to be used for model training. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PersonalizedAIRoutingDTO",
"title": "PersonalizedAIRoutingDTO",
"type": "object",
"properties": {
"enable": {
"type": "boolean",
"description": "Used to toggle the state of the Personalized AI Routing configuration from active to inactive and vice-versa. Mandatory for create/update operation.",
"example": true
},
"cjdsWorkspaceId": {
"type": "string",
"description": "Id of the CJDS workspace id to be used for model training.",
"example": true
},
"cjdsProfileTemplateId": {
"type": "string",
"description": "Id of the CJDS Profile template to be used for model training.",
"example": true
}
}
}