Webex · Schema

FeatureAccessCode

Details of a feature access code configured for services that are assigned to the authenticated user.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
name string Feature Access Code name.
code string Feature Access Code.
alternateCode string Alternate Code for the Feature Access Code.
View JSON Schema on GitHub

JSON Schema

webex-featureaccesscode-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FeatureAccessCode",
  "title": "FeatureAccessCode",
  "type": "object",
  "description": "Details of a feature access code configured for services that are assigned to the authenticated user.",
  "example": {
    "name": "Call Forwarding Busy Interrogation",
    "code": "*67*",
    "alternateCode": "*18"
  },
  "required": [
    "name",
    "code"
  ],
  "properties": {
    "name": {
      "type": "string",
      "example": "Call Forwarding Busy Interrogation",
      "description": "Feature Access Code name."
    },
    "code": {
      "type": "string",
      "example": "*67*",
      "description": "Feature Access Code."
    },
    "alternateCode": {
      "type": "string",
      "example": "*18",
      "description": "Alternate Code for the Feature Access Code."
    }
  }
}