Webex · Schema

DomainUnverification

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
verifiedDomains array A list of verified domains for a given organization.
claimedDomains array A list of claimed domains for a given organization.
url string Use this URL for unverifying domain ownership and managing the domain lifecycle within the organization.
View JSON Schema on GitHub

JSON Schema

webex-domainunverification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DomainUnverification",
  "title": "DomainUnverification",
  "type": "object",
  "required": [
    "verifiedDomains",
    "claimedDomains",
    "url"
  ],
  "properties": {
    "verifiedDomains": {
      "type": "array",
      "items": {
        "type": "string",
        "example": "cisco.com,webex.com"
      },
      "description": "A list of verified domains for a given organization."
    },
    "claimedDomains": {
      "type": "array",
      "items": {
        "type": "string",
        "example": "cisco.com,webex.com"
      },
      "description": "A list of claimed domains for a given organization."
    },
    "url": {
      "type": "string",
      "example": "https://identity.webex.com/organization/bf732c85-68ca-4867-94e4-937286ad2fd4/v1/actions/DomainVerification/Unverify/invoke",
      "description": "Use this URL for unverifying domain ownership and managing the domain lifecycle within the organization."
    }
  }
}