Cisco Webex · Schema

CreateTeamMembershipRequest

CollaborationCommunicationsMeetingsMessagingTeamsVideo Conferencing

Properties

Name Type Description
teamId string The team ID to add the person to.
personId string The person ID to add. Either personId or personEmail is required.
personEmail string The email address of the person. Either personId or personEmail is required.
isModerator boolean Whether the person is a team moderator.
View JSON Schema on GitHub

JSON Schema

cisco-webex-createteammembershiprequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateTeamMembershipRequest",
  "title": "CreateTeamMembershipRequest",
  "type": "object",
  "required": [
    "teamId"
  ],
  "properties": {
    "teamId": {
      "type": "string",
      "description": "The team ID to add the person to."
    },
    "personId": {
      "type": "string",
      "description": "The person ID to add. Either personId or personEmail is required."
    },
    "personEmail": {
      "type": "string",
      "format": "email",
      "description": "The email address of the person. Either personId or personEmail is required."
    },
    "isModerator": {
      "type": "boolean",
      "description": "Whether the person is a team moderator."
    }
  }
}