## DeleteDomainVerification `client.Organizations.DomainVerifications.Delete(ctx, body) (*OrganizationDomainVerificationDeleteResponse, error)` **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 - `body OrganizationDomainVerificationDeleteParams` - `DomainVerificationID param.Field[string]` ### Returns - `type OrganizationDomainVerificationDeleteResponse interface{…}` ### Example ```go package main import ( "context" "fmt" "github.com/gitpod-io/gitpod-sdk-go" "github.com/gitpod-io/gitpod-sdk-go/option" ) func main() { client := gitpod.NewClient( option.WithBearerToken("My Bearer Token"), ) domainVerification, err := client.Organizations.DomainVerifications.Delete(context.TODO(), gitpod.OrganizationDomainVerificationDeleteParams{ DomainVerificationID: gitpod.F("d2c94c27-3b76-4a42-b88c-95a85e392c68"), }) if err != nil { panic(err.Error()) } fmt.Printf("%+v\n", domainVerification) } ``` #### Response ```json {} ```