---
title: "Get Dynamic Echo Response"
url: "https://sbx.developer-internal.sanofi.com/apis/testapi-2/versions/0a4bcaeb-ef1b-4f72-b165-54db55bc0379/paths/testapi/get"
---

> Full API specification: https://sbx.developer-internal.sanofi.com/apis/testapi-2/versions/0a4bcaeb-ef1b-4f72-b165-54db55bc0379.md

# Get Dynamic Echo Response

`GET` `/testapi`

## Responses

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

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: testapi
  version: 2.0.0
paths:
  /testapi:
    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
    OAuth2Auth:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://your-auth-server.com/token
          scopes: {}
    BasicAuth:
      type: http
      scheme: basic
```
