Webex · Schema

PutMembersRequest

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
members array This specifies the new list of device members, completely replacing the existing device members. If the member's list is omitted then all the users are removed except the primary user.
View JSON Schema on GitHub

JSON Schema

webex-putmembersrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PutMembersRequest",
  "title": "PutMembersRequest",
  "type": "object",
  "properties": {
    "members": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PutMemberObject"
      },
      "description": "This specifies the new list of device members, completely replacing the existing device members. If the member's list is omitted then all the users are removed except the primary user."
    }
  }
}