Yandex Cloud
Search
Contact UsGet started
  • Blog
  • Pricing
  • Documentation
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • ML & AI
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Customer Stories
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
    • Yandex Cloud Partner program
  • Blog
  • Pricing
  • Documentation
© 2025 Direct Cursus Technology L.L.C.
Yandex API Gateway
  • Getting started
    • All guides
    • Creating an API gateway
      • Updating API gateways and their specifications
      • Adding a domain
      • Specifying a cloud network
      • Setting up variables
      • Setting up a canary release
      • Viewing monitoring charts
      • Removing a domain
      • Migration to the ru-central1-d availability zone
      • Deleting an API gateway
    • Viewing operations with service resources
  • Access management
  • Pricing policy
  • Terraform reference
  • Monitoring metrics
  • Audit Trails events
  • Release notes
  • FAQ
  1. Step-by-step guides
  2. Managing an API gateway
  3. Removing a domain

Disconnecting a domain

Written by
Yandex Cloud
Updated at May 13, 2025
Management console
CLI
API
  1. In the management console, select the folder containing the API gateway.

  2. In the list of services, select API Gateway.

  3. Click the API gateway name.

  4. Go to Domains.

  5. Click in the domain row and select Detach.

  6. Confirm your action.

  7. Delete the resource record created when connecting the domain to the API gateway:

    • If your domain is delegated to Cloud DNS:

      1. In the list of services, select Cloud DNS.
      2. Select the zone hosting the domain.
      3. Click in the record row with the icon and select Delete.
      4. Confirm the deletion.
    • If a third-party DNS provider manages your domain, delete the record on the domain management page of your provider.

If you do not have the Yandex Cloud (CLI) command line interface yet, install and initialize it.

The folder specified when creating the CLI profile is used by default. To change the default folder, use the yc config set folder-id <folder_ID> command. You can specify a different folder using the --folder-name or --folder-id parameter.

  1. View the description of the CLI command for disconnecting a domain:

    yc serverless api-gateway remove-domain --help
    
  2. Run the following command:

    yc serverless api-gateway remove-domain <API_gateway_ID> --domain-id <domain_ID>
    
  3. Delete the resource record created when connecting the domain to the API gateway:

    • If your domain is delegated to Cloud DNS:

      1. Get a list of all records in the DNS zone by specifying the relevant zone ID:

        yc dns zone list-records <DNS_zone_ID>
        

        The record in question is of the ANAME type and has a value in d5dm1lba80md********.i9******.apigw.yandexcloud.net format.

      2. Delete a record:

        yc dns zone delete-records <DNS_zone_ID> \
          --record "<domain_name> <TTL> <record_type> <value>"
        
    • If a third-party DNS provider manages your domain, delete the record on the domain management page of your provider.

To disconnect a domain from an API gateway, use the removeDomain REST API method for the ApiGateway resource or the ApiGatewayService/RemoveDomain gRPC API call.

Delete the resource record created when connecting the domain to the API gateway:

  • If your domain is delegated to Cloud DNS, use the updateRecordSets REST API method for the DnsZone resource or the DnsZoneService/UpdateRecordSets gRPC API call.

  • If a third-party DNS provider manages your domain, delete the record on the domain management page of your provider.

Was the article helpful?

Previous
Writing logs
Next
Migration to the ru-central1-d availability zone
© 2025 Direct Cursus Technology L.L.C.