Webex · Schema
DynamicSettingsUpdateJobDevicePostItem
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| familyOrModelDisplayName | string | The `familyOrModelDisplayName` of the device to which the tag applies. This value must exist in the validation schema. |
| tag | string | The unique identifier for the setting to be updated. |
| action | object | |
| value | string | The new value to set for the setting. This field is required when `action` is `SET` and ignored otherwise. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DynamicSettingsUpdateJobDevicePostItem",
"title": "DynamicSettingsUpdateJobDevicePostItem",
"type": "object",
"required": [
"familyOrModelDisplayName",
"tag",
"action"
],
"properties": {
"familyOrModelDisplayName": {
"type": "string",
"description": "The `familyOrModelDisplayName` of the device to which the tag applies. This value must exist in the validation schema.",
"example": "Poly",
"minLength": 1,
"maxLength": 40
},
"tag": {
"type": "string",
"description": "The unique identifier for the setting to be updated.",
"example": "%G711U_ORDER%",
"minLength": 1,
"maxLength": 64
},
"action": {
"$ref": "#/components/schemas/Action"
},
"value": {
"type": "string",
"description": "The new value to set for the setting. This field is required when `action` is `SET` and ignored otherwise.",
"example": "4",
"minLength": 1,
"maxLength": 256
}
}
}