Webex · Schema

ConnectionOptionsResponse

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string A unique identifier for the connection.
displayName string The display name of the PSTN connection.
pstnServices array The PSTN services available for this connection.
View JSON Schema on GitHub

JSON Schema

webex-connectionoptionsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionOptionsResponse",
  "title": "ConnectionOptionsResponse",
  "type": "object",
  "required": [
    "id"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL0NBTExfUElDS1VQL1kyRnNiRkJwWTJ0MWNERT0",
      "description": "A unique identifier for the connection."
    },
    "displayName": {
      "type": "string",
      "example": "Premises-based PSTN",
      "description": "The display name of the PSTN connection."
    },
    "pstnServices": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PSTNServiceType"
      },
      "description": "The PSTN services available for this connection."
    }
  }
}