Webex · Schema

DeleteMember

Schema for removing members.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
value string The entryuuid of customer org.
operation string Operation "delete" is supported for removing members.
View JSON Schema on GitHub

JSON Schema

webex-deletemember-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeleteMember",
  "title": "DeleteMember",
  "type": "object",
  "description": "Schema for removing members.",
  "properties": {
    "value": {
      "type": "string",
      "description": "The entryuuid of customer org.",
      "example": "cdb658ca-7aab-4336-a00b-51479273326d"
    },
    "operation": {
      "type": "string",
      "enum": [
        "delete"
      ],
      "default": "delete",
      "description": "Operation \"delete\" is supported for removing members.\n"
    }
  }
}