Webex · Schema

PutAccessCodeLocationObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
deleteCodes array Array of string to delete access codes. For example, ["1234","2345"]
View JSON Schema on GitHub

JSON Schema

webex-putaccesscodelocationobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PutAccessCodeLocationObject",
  "title": "PutAccessCodeLocationObject",
  "type": "object",
  "required": [
    "deleteCodes"
  ],
  "properties": {
    "deleteCodes": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Array of string to delete access codes. For example, [\"1234\",\"2345\"]"
    }
  }
}