Webex · Schema

ExecutiveAvailableAssistantsGet

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
assistants array List of people available for assignment as executive assistants.
View JSON Schema on GitHub

JSON Schema

webex-executiveavailableassistantsget-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExecutiveAvailableAssistantsGet",
  "title": "ExecutiveAvailableAssistantsGet",
  "type": "object",
  "example": {
    "assistants": [
      {
        "id": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS82ZTU1NWNkMC02MzQxLTQyYjgtYTIxYy1lNzVmMjE0NDgyNzU",
        "firstName": "doe",
        "lastName": "John",
        "directNumber": "+91-6557765419",
        "extension": "10079"
      }
    ]
  },
  "properties": {
    "assistants": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AvailableAssistant"
      },
      "description": "List of people available for assignment as executive assistants."
    }
  }
}