Webex · Schema

ManagedByResponse

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
orgId string The admin's organization ID.
type string Type of administrator.
id string Entryuuid of the user.
roles array The roles assigned to the admin for managing the customer group.
View JSON Schema on GitHub

JSON Schema

webex-managedbyresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ManagedByResponse",
  "title": "ManagedByResponse",
  "type": "object",
  "properties": {
    "orgId": {
      "type": "string",
      "description": "The admin's organization ID.",
      "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"
    },
    "roles": {
      "type": "array",
      "description": "The roles assigned to the admin for managing the customer group.",
      "items": {
        "type": "string"
      }
    }
  }
}