---
title: "Get Dynamic Echo Response"
url: "https://sbx.developer-internal.sanofi.com/apis/testingapideck-2/versions/ac7d18a7-5e8e-4914-835a-fdf08ea83700/paths/testingapideck/get"
---

> Full API specification: https://sbx.developer-internal.sanofi.com/apis/testingapideck-2/versions/ac7d18a7-5e8e-4914-835a-fdf08ea83700.md

# Get Dynamic Echo Response

`GET` `/testingapideck`

## Responses

- `200` - A free-form JSON object echoing the request.

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: testingapideck
  version: 2.0.0
servers:
  - url: https://my-kong-proxy-kongdev.apps.rosa.scale-5348b967.h2k0.p3.openshiftapps.com
paths:
  /testingapideck:
    get:
      summary: Get Dynamic Echo Response
      responses:
        "200":
          description: A free-form JSON object echoing the request.
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
security:
  - ApiKeyAuth: []
  - OAuth2Auth: []
  - BasicAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apikey
      x-kong-security-key-auth:
        config:
          key_names:
            - apikey
          hide_credentials: true
```
