Webex · Schema

ManagedBy

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
orgId string The admin’s organization ID. It represents either the partner organization that owns the customer group or an external administrator’s organization
type string Type of administrator.
id string Entryuuid of the user.
email string Email of the user. Either Email or id is required in managedBy field
roles array The roles assigned to the admin for managing the customer group.
View JSON Schema on GitHub

JSON Schema

webex-managedby-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ManagedBy",
  "title": "ManagedBy",
  "type": "object",
  "properties": {
    "orgId": {
      "type": "string",
      "description": "The admin\u2019s organization ID. It represents either the partner organization that owns the customer group or an external administrator\u2019s organization\n",
      "example": "09ebb769-3098-4446-9093-4b39b296602b"
    },
    "type": {
      "type": "string",
      "description": "Type of administrator.",
      "enum": [
        "user"
      ],
      "example": "user"
    },
    "id": {
      "type": "string",
      "description": "Entryuuid of the user.",
      "example": "cb092233-b3e6-48fd-ab42-551f8cb01513"
    },
    "email": {
      "type": "string",
      "description": "Email of the user. Either Email or id is required in managedBy field",
      "example": "[email protected]"
    },
    "roles": {
      "type": "array",
      "description": "The roles assigned to the admin for managing the customer group.",
      "items": {
        "type": "string"
      }
    }
  }
}