Yandex Cloud
Search
Discuss with expertTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
    • Cloud Interconnect
    • Cloud Backup
    • Cloud Registry
    • Yandex AI Studio
    • Compute Cloud
    • Object Storage
    • Managed Service for Kubernetes®
    • Yandex BareMetal
    • Smart Web Security
    • Security Deck
    • Managed Service for PostgreSQL
    • Managed Service for ClickHouse®
    • Monium
    • Cloud CDN
    • Network Load Balancer
    • Virtual Private Cloud
    • Cloud DNS
    • Application Load Balancer
    • Yandex Cloud Video
    • Stackland
    • Yandex Cloud Router
    • Yandex Managed Service for Trino
    • Managed Service for MySQL®
    • Managed Service for Valkey™
    • Managed Service for Apache Spark™
    • Yandex StoreDoc
    • Managed Service for OpenSearch
    • Managed Service for Apache Kafka®
    • Data Transfer
    • Yandex MPP Analytics Engine for PostgreSQL
    • Yandex Managed Service for Apache Airflow®
    • Data Processing
    • Yandex MetaData Hub
    • Managed Service for YDB
    • Managed Service for Sharded PostgreSQL
    • Managed Service for YTsaurus
    • Yandex WebSQL
    • DataLens
    • Yandex Search API
    • SpeechSense
    • SpeechKit
    • DataSphere
    • Vision OCR
    • Translate
    • Yandex Identity Hub
    • Key Management Service
    • Certificate Manager
    • Yandex Lockbox
    • Audit Trails
    • SmartCaptcha
    • Cloud Desktop
    • SourceCraft Code Assistant
    • Container Registry
    • Managed Service for GitLab
    • Managed Service for Prometheus®
    • Cloud Functions
    • API Gateway
    • Yandex Cloud Postbox
    • Message Queue
    • Serverless Integrations
    • IoT Core
    • Data Streams
    • Serverless Containers
    • Cloud Notification Service
    • Yandex Query
    • Identity and Access Management
    • Yandex Cloud Console
    • Resource Manager
    • Yandex Cloud Billing
    • Yandex Cloud Quota Manager
    • Cloud Apps
  • System Status
  • Marketplace
    • Featured
    • Infrastructure & Network
    • Data Platform
    • AI for business
    • Security
    • DevOps tools
    • Serverless
    • Monitoring & Resources
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2026 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
  • Tools
  • Pricing policy
  • Terraform reference
  • Monitoring metrics
  • Audit Trails events
  • Public materials
  • Release notes
  • FAQ
  1. Step-by-step guides
  2. Managing an API gateway
  3. Removing a domain

Removing a domain

Written by
Yandex Cloud
Updated at June 29, 2026
View in Markdown
Management console
CLI
API
  1. In the management console, select the folder containing the API gateway.

  2. Navigate to API Gateway.

  3. Click the API gateway name.

  4. Navigate to the Domains tab.

  5. Click in the domain row and select Detach.

  6. Confirm your action.

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

    • If your domain is delegated to Cloud DNS:

      1. Navigate to 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 yet, install and initialize it.

The folder used by default is the one specified when creating the CLI profile. To change the default folder, use the yc config set folder-id <folder_ID> command. You can also specify a different folder for any command using --folder-name or --folder-id. If you access a resource by its name, the search will be limited to the default folder. If you access a resource by its ID, the search will be global, i.e., through all folders based on access permissions.

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

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

    yc serverless api-gateway remove-domain <API_gateway_ID> --domain-id <domain_ID>
    
  3. Delete the resource record created when adding 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 the 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 remove 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 adding 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
© 2026 Direct Cursus Technology L.L.C.