Webex · Schema

PostClaimDomain

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
data array A List of valid domain name that is already verified by the organization.
forceDomainClaim boolean Indicate if the domain should be claimed when there are users outside the organization using the same domain. The default is true.
claimDomainOnly boolean Indicate to just claim the domain only without searching/marking external users as transient. The default is false.
View JSON Schema on GitHub

JSON Schema

webex-postclaimdomain-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PostClaimDomain",
  "title": "PostClaimDomain",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Domain"
      },
      "description": "A List of valid domain name that is already verified by the organization."
    },
    "forceDomainClaim": {
      "type": "boolean",
      "example": true,
      "description": "Indicate if the domain should be claimed when there are users outside the organization using the same domain. The default is true."
    },
    "claimDomainOnly": {
      "type": "boolean",
      "description": "Indicate to just claim the domain only without searching/marking external users as transient. The default is false."
    }
  }
}