Webex · Schema

ManagedGroupObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
orgId string Webex Identity assigned organization identifier.
groupId string A unique identifier for the group.
role string Role in the target organization for the user.
View JSON Schema on GitHub

JSON Schema

webex-managedgroupobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ManagedGroupObject",
  "title": "ManagedGroupObject",
  "type": "object",
  "required": [
    "orgId",
    "groupId",
    "role"
  ],
  "properties": {
    "orgId": {
      "type": "string",
      "example": "153ced48-d2d1-4369-86fd-9b9fade218ff",
      "description": "Webex Identity assigned organization identifier."
    },
    "groupId": {
      "type": "string",
      "example": "1929effd-b750-43d6-be0d-7dcdaac38e92",
      "description": "A unique identifier for the group."
    },
    "role": {
      "type": "string",
      "example": "location_full_admin",
      "description": "Role in the target organization for the user."
    }
  }
}