> ## Documentation Index
> Fetch the complete documentation index at: https://docs.beam.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Provide feedback for a specific setup step



## OpenAPI

````yaml post /agent-setup/{agentId}/{setupStep}/feedback
openapi: 3.0.0
info:
  title: Public API
  description: Public endpoints to interact with agents and orchestrate tasks
  version: '1.0'
  contact: {}
servers:
  - url: https://api.beamstudio.ai
security: []
tags: []
paths:
  /agent-setup/{agentId}/{setupStep}/feedback:
    post:
      tags:
        - Agent Setup
      summary: Provide feedback for a specific setup step
      operationId: BeamAgentController_addStepFeedback
      parameters:
        - name: agentId
          required: true
          in: path
          schema:
            type: string
        - name: setupStep
          required: true
          in: path
          schema:
            enum:
              - SOP_GENERATION
              - GRAPH_GENERATION
              - TOOL_MATCHING
              - TOOL_GENERATION
              - CONNECT_INTEGRATIONS
            type: string
        - name: current-workspace-id
          in: header
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/QueryDTO'
      responses:
        '201':
          description: ''
      security:
        - x-api-key: []
components:
  schemas:
    QueryDTO:
      type: object
      properties:
        query:
          type: string
          description: >-
            The feedback or query text to submit. This can be user feedback on
            the current step, questions about the agent configuration, or
            instructions for modifications.
          example: >-
            The agent should also handle refund requests in addition to general
            inquiries.
        contextFileIds:
          description: >-
            Array of context file UUIDs to include with the feedback. These
            files provide additional reference materials or examples to support
            the feedback.
          example:
            - a1b2c3d4-e5f6-7890-abcd-ef1234567890
            - b2c3d4e5-f6a7-8901-bcde-f12345678901
          type: array
          items:
            type: string
            format: uuid
      required:
        - query
  securitySchemes:
    x-api-key:
      type: apiKey
      in: header
      name: x-api-key

````