DanielW
New Contributor III

Actually, when you recheck the docs , there is the answer

parameters:
        - name: body
          in: body
          required: true
          schema:
            type: object
            properties:
              warehouse_id:
                type: string
                description: The ID of the shop to retrieve.
                default: <warehouse_id>
                x-ms-visibility: important
              statement:
                type: string
                description: SQL statement to execute.
                default: >
                  SELECT * FROM cycle_shops WHERE shop_id = :shop_id
                x-ms-visibility: important
              parameters:
                type: array
                description: List of SQL parameters.
                items:
                  type: object
                  properties:
                    name:
                      type: string
                      description: The name of the SQL parameter.
                      example: shop_id
                    value:
                      type: string
                      description: The value for the SQL parameter.
                      example: '10'