Skip to content
Ona Docs

DeleteDomainVerification

organizations.domain_verifications.delete(DomainVerificationDeleteParams**kwargs) -> object
POST/gitpod.v1.OrganizationService/DeleteDomainVerification

Removes a domain verification request.

Use this method to:

  • Cancel pending verifications
  • Remove verified domains
  • Clean up unused domain records

Examples

  • Delete verification:

    Removes a domain verification request.

    domainVerificationId: "d2c94c27-3b76-4a42-b88c-95a85e392c68"
ParametersExpand Collapse
domain_verification_id: str
formatuuid
ReturnsExpand Collapse
object

DeleteDomainVerification

import os
from gitpod import Gitpod

client = Gitpod(
    bearer_token=os.environ.get("GITPOD_API_KEY"),  # This is the default and can be omitted
)
domain_verification = client.organizations.domain_verifications.delete(
    domain_verification_id="d2c94c27-3b76-4a42-b88c-95a85e392c68",
)
print(domain_verification)
{}
Returns Examples
{}