Webex · Schema

PatchMemberWithOperation

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Person ID.
operation string Operation type. Either `add` or `delete`. The default operation is `add` if no operation is specified.
View JSON Schema on GitHub

JSON Schema

webex-patchmemberwithoperation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PatchMemberWithOperation",
  "title": "PatchMemberWithOperation",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS8xOTUzOTdhMi03MTU5LTRjNTgtYTBiOC00NmQ2ZWZlZTdkMTM",
      "description": "Person ID."
    },
    "operation": {
      "type": "string",
      "example": "add",
      "description": "Operation type. Either `add` or `delete`. The default operation is `add` if no operation is specified."
    }
  }
}