Webex · Schema

FeatureAccessCodeListGetObject

Response object for the list of feature access codes.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
featureAccessCodeList array List of feature access codes.
View JSON Schema on GitHub

JSON Schema

webex-featureaccesscodelistgetobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FeatureAccessCodeListGetObject",
  "title": "FeatureAccessCodeListGetObject",
  "type": "object",
  "description": "Response object for the list of feature access codes.",
  "example": {
    "featureAccessCodeList": [
      {
        "name": "Call Forwarding Busy Interrogation",
        "code": "*67*",
        "alternateCode": "*18"
      },
      {
        "name": "Cancel Call Waiting",
        "code": "*70"
      },
      {
        "name": "Call Waiting Interrogation",
        "code": "*53*",
        "alternateCode": "*38"
      }
    ]
  },
  "required": [
    "featureAccessCodeList"
  ],
  "properties": {
    "featureAccessCodeList": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/FeatureAccessCode"
      },
      "description": "List of feature access codes."
    }
  }
}