Шлюз API GCP передает полезную нагрузку JSON для метода HTTP GET

# #google-cloud-run #google-api-gateway

Вопрос:

 /test:
    get:
      summary: Get an Employee
      operationId: getEmployee
      x-google-backend:
        address: https://xyz-nn.a.run.app #Cloud RUN URL
        protocol: h2
      parameters:
        - name: employee_id
          in: query
          description: Employee Id
          required: true
          type: string
        - name: employee
          in: body
          description: Employee to be Added
          schema:
            $ref: '#/definitions/Employee'
      responses:
        '200':
          description: A successful response
          schema:
            type: string
        '404':
          description: A Employee with the specified ID was not found.
          schema:
            type: string
        '412':
          description: Employee Id not provided
          schema:
            type: string
 

Здесь используется запрос GET, но шлюз API дает мне 400. Как я могу передать параметры тела в запросе GET вместе с параметрами запроса.