Webex · Schema

Customer

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string ID of the customer/organization.
name string Name of the customer/organization.
View JSON Schema on GitHub

JSON Schema

webex-customer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Customer",
  "title": "Customer",
  "type": "object",
  "required": [
    "id",
    "name"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL09SR0FOSVpBVElPTi85NmFiYzJhYS0zZGNjLTExZTUtYTE1Mi1mZTM0ODE5Y2RjOWE",
      "description": "ID of the customer/organization."
    },
    "name": {
      "type": "string",
      "example": "test_org",
      "description": "Name of the customer/organization."
    }
  }
}