Webex · Schema

SiteTeamPairDTO

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
siteName string Indicates the name of the site. Generally, it is the name of the geographical location. It is required only during a create or an update operation.
teamName string Enter the name for the team. Generally, use names that indicate the function of the team, such as Billing or Customer Support. This field should be specified for create and update operation. Two teams
View JSON Schema on GitHub

JSON Schema

webex-siteteampairdto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SiteTeamPairDTO",
  "title": "SiteTeamPairDTO",
  "type": "object",
  "properties": {
    "siteName": {
      "type": "string",
      "description": "Indicates the name of the site. Generally, it is the name of the geographical location. It is required only during a create or an update operation.",
      "example": "California"
    },
    "teamName": {
      "type": "string",
      "description": "Enter the name for the team. Generally, use names that indicate the function of the team, such as Billing or Customer Support. This field should be specified for create and update operation. Two teams in the same site in an organization cannot share the same name.",
      "example": "inline-pcs-team"
    }
  }
}