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

# Send Feedback

> Allows users to submit feedback with optional image attachments



## OpenAPI

````yaml POST /support/send-feedback
openapi: 3.1.0
info:
  title: Tatu API
  description: API documentation for Tatu's booking and artist management system
  version: 1.0.0
servers:
  - url: http://localhost:3000/api
    description: Development server
security: []
paths:
  /support/send-feedback:
    post:
      summary: Send Feedback
      description: Allows users to submit feedback with optional image attachments
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SendFeedbackRequest'
      responses:
        '200':
          description: Feedback submitted successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  feedbackId:
                    type: string
                    description: The ID of the created feedback
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    SendFeedbackRequest:
      type: object
      required:
        - category
        - description
      properties:
        category:
          type: string
          description: Feedback category
        description:
          type: string
          description: Detailed feedback description
        attachments:
          type: array
          items:
            type: object
            properties:
              name:
                type: string
              type:
                type: string
              data:
                type: string
                description: Base64 encoded image data
          description: Optional image attachments
    Error:
      type: object
      required:
        - message
      properties:
        message:
          type: string

````