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

# Send product feedback

> Dispatches a feedback email to the Avido team via the Loops transactional email integration. The authenticated user's email is attached automatically.



## OpenAPI

````yaml https://app.stainless.com/api/spec/documented/avido/openapi.documented.yml post /v0/feedback
openapi: 3.1.1
info:
  title: Avido API
  description: >-
    Avido's API for LLM usage events, tool calls, trace management, webhook
    validation, and more. See each endpoint's request/response schema for
    details.
  version: 0.1.0
  contact:
    name: Avido Support
    email: support@avidoai.com
    url: https://avidoai.com/support
servers:
  - url: https://api.avidoai.com
    description: Production API
security:
  - ApiKey: []
    ApplicationId: []
paths:
  /v0/feedback:
    post:
      tags:
        - Feedback
      summary: Send product feedback
      description: >-
        Dispatches a feedback email to the Avido team via the Loops
        transactional email integration. The authenticated user's email is
        attached automatically.
      operationId: sendFeedback
      requestBody:
        description: Feedback payload
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SendFeedbackRequest'
            examples:
              success:
                summary: Send feedback
                value:
                  feedback: The annotations UI could use keyboard shortcuts.
      responses:
        '201':
          description: Feedback dispatched successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SendFeedbackResponse'
              examples:
                success:
                  summary: Success
                  value:
                    success: true
        '400':
          description: bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: invalid input
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorResponse'
        '500':
          description: internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    SendFeedbackRequest:
      type: object
      properties:
        feedback:
          description: Free-form feedback message from the authenticated user.
          example: Love the new dashboard — one small nit on the sidebar...
          type: string
          minLength: 1
          maxLength: 5000
      required:
        - feedback
      title: SendFeedbackRequest
      description: Request body for submitting product feedback.
    SendFeedbackResponse:
      type: object
      properties:
        success:
          type: boolean
          description: Whether the feedback email was dispatched successfully.
          example: true
      required:
        - success
      additionalProperties: false
      title: SendFeedbackResponse
      description: Result of a feedback submission.
    ErrorResponse:
      type: object
      properties:
        message:
          type: string
          description: A human-readable error message explaining the error.
          example: Resource not found
      required:
        - message
      additionalProperties: false
      title: ErrorResponse
      description: Standard error format for failed API operations.
    ValidationErrorResponse:
      type: object
      properties:
        message:
          type: string
          description: A human-readable error message indicating what went wrong.
          example: Invalid request data
        issues:
          type: array
          items:
            type: object
            properties:
              code:
                type: string
              message:
                type: string
              path:
                type: array
                items:
                  type: string
            required:
              - code
              - message
              - path
            additionalProperties: false
          description: Array of detailed validation error objects.
          example:
            - code: invalid_string
              message: Invalid UUID
              path:
                - id
      required:
        - message
        - issues
      additionalProperties: false
      title: ValidationErrorResponse
      description: Details about validation errors in incoming requests.
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: Your unique Avido API key
    ApplicationId:
      type: apiKey
      in: header
      name: x-application-id
      description: Your unique Avido Application ID

````