Webex · Schema

PostDomainUnverification

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
domain string Domain name to be verified.
removePending boolean Specify whether to remove pending domain. Default is false (backward compatibility). If true, domains will be deleted from pending domain list.
View JSON Schema on GitHub

JSON Schema

webex-postdomainunverification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PostDomainUnverification",
  "title": "PostDomainUnverification",
  "type": "object",
  "required": [
    "domain"
  ],
  "properties": {
    "domain": {
      "type": "string",
      "example": "abc.com",
      "description": "Domain name to be verified."
    },
    "removePending": {
      "type": "boolean",
      "description": "Specify whether to remove pending domain. Default is false (backward compatibility). If true, domains will be deleted from pending domain list."
    }
  }
}