---
title: "Reproduce Dev Portal Query Parameter Bug"
url: "https://kiwi.arashsheyda.me/apis/kong-konnect-dev-portal-bug-reproduction-api-1/versions/f460d706-1a67-4adc-b140-4cddfb7d51f6/operations/reproduceQueryBug"
---

> Full API specification: https://kiwi.arashsheyda.me/apis/kong-konnect-dev-portal-bug-reproduction-api-1/versions/f460d706-1a67-4adc-b140-4cddfb7d51f6.md

# Reproduce Dev Portal Query Parameter Bug

`GET` `/anything`

Operation ID: `reproduceQueryBug`

1. Click "Try it". 2. Leave all the query parameter fields completely blank. 3. Click "Send" / "Execute". 4. Look at the Response Body. If the bug is present, the `args` object will show the parameters mapped to the literal string `"undefined"`.

## Query parameters

- `website_id` (string, optional) - Optional website ID filter.
- `text_filter` (string, optional) - Optional text search filter.
- `from` (string, optional) - Optional start timestamp.
- `until` (string, optional) - Optional end timestamp.
- `cursor` (string, optional) - Optional pagination cursor.

## Responses

- `200` - Success. The incoming request payload is echoed back.

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: Kong Konnect Dev Portal Bug Reproduction API
  version: 1.0.0
servers:
  - url: https://httpbin.konghq.com
    description: Public HTTP Request & Response Service (Echoes back request details)
paths:
  /anything:
    get:
      summary: Reproduce Dev Portal Query Parameter Bug
      description: >
        1. Click "Try it". 2. Leave all the query parameter fields completely
        blank. 3. Click "Send" / "Execute". 4. Look at the Response Body. If the
        bug is present, the `args` object 
           will show the parameters mapped to the literal string `"undefined"`.
      operationId: reproduceQueryBug
      parameters:
        - name: website_id
          in: query
          required: false
          description: Optional website ID filter.
          schema:
            type: string
        - name: text_filter
          in: query
          required: false
          description: Optional text search filter.
          schema:
            type: string
        - name: from
          in: query
          required: false
          description: Optional start timestamp.
          schema:
            type: string
        - name: until
          in: query
          required: false
          description: Optional end timestamp.
          schema:
            type: string
        - name: cursor
          in: query
          required: false
          description: Optional pagination cursor.
          schema:
            type: string
      responses:
        "200":
          description: Success. The incoming request payload is echoed back.
          content:
            application/json:
              schema:
                type: object
                properties:
                  args:
                    type: object
                    description: Contains the query parameters received by the server.
```
