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
    • 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
    • Resource relationships
    • Networking
      • Overview
        • Static response
        • Access over HTTP
        • Cloud Functions
        • Serverless Containers
        • Smart Web Security
        • Object Storage
        • DataSphere
        • Data Streams
        • Message Queue
        • Managed Service for YDB
      • Greedy parameters
      • Generic HTTP method
      • Authorization using a Cloud Functions function
      • Authorization using a JWT
      • WebSocket protocol support
      • Data validation
      • CORS
      • Specification parameterization
      • Canary release
      • Request rate limit
      • Response code replacement
      • Transformation of response and request bodies
    • Quotas and limits
  • Access management
  • Pricing policy
  • Terraform reference
  • Monitoring metrics
  • Audit Trails events
  • Release notes
  • FAQ

In this article:

  • Supported parameters
  • Extension specification
  • Use cases
  1. Concepts
  2. Specification extensions
  3. Integration options
  4. Static response

x-yc-apigateway-integration:dummy extension

Written by
Yandex Cloud
Updated at April 18, 2025
  • Supported parameters
  • Extension specification
  • Use cases

The x-yc-apigateway-integration:dummy extension returns fixed content with the specified response code and required headers without any third-party service involved.

You can add an extension to a specification using the specification constructor.

Supported parametersSupported parameters

The table below lists the parameters specific to API Gateway API gateways. You can find the description of other parameters in the OpenAPI 3.0 specification.

Parameter Type Description
http_code int HTTP response code.
http_headers map[string](string|[]string) It shows the list of headers to send in the response. The parameters are subsituted into http_headers.
content map[string]string Data to send in response.
It can be either actual content or the result of mapping the requested Content-Type to data. This allows you to send errors in the requested format: JSON or XML. The * key is used for the default value. The parameters are subsituted into content.

Extension specificationExtension specification

Specification example:

x-yc-apigateway-integration:
  type: dummy
  http_code: 302
  http_headers:
    Location: "/some/location"
    Set-Cookie: ["a={number}", "b=2"]
  content:
    "application/json": "{ \"message\": \"You've been redirected.\" }"

Extension features:

  • If the request contains the Accept header:
    • The best match is selected first.
    • If there is no match, the * key is selected.
    • If there is no key, the 415 Media not supported response is returned.
  • If the Accept header is missing, any response may be selected.
  • If the content option is selected by the * key, the response's Content-Type will be picked from http_headers. If it is not specified there, the actual Content-Type is returned.

Use casesUse cases

  • Protecting API Gateway by integrating with Smart Web Security
  • Working with an API gateway via WebSocket
  • Creating a Slack chat bot

Was the article helpful?

Previous
Overview
Next
Access over HTTP
© 2025 Direct Cursus Technology L.L.C.