## 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. ```yaml domainVerificationId: "d2c94c27-3b76-4a42-b88c-95a85e392c68" ``` ### Parameters - `domain_verification_id: str` ### Returns - `object` ### Example ```python 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) ``` #### Response ```json {} ```