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

# Public platform feedback endpoint, no auth

> Accepts JSON feedback or multipart form data with an optional `screenshot` image. Screenshots are stored as private attachments on the created feedback issue.



## OpenAPI

````yaml /openapi.json post /api/feedback
openapi: 3.1.0
info:
  title: Atoll API
  version: 1.0.0
  description: >-
    REST API for Atoll project management, agent collaboration, strategy
    tracking, and integrations.
servers:
  - url: https://atollhq.com
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Organizations
  - name: Projects
  - name: Project access
  - name: Issues
  - name: Issue details
  - name: Milestones
  - name: Strategy
  - name: Members and agents
  - name: Planning
  - name: Integrations and billing
  - name: Notifications and public
paths:
  /api/feedback:
    post:
      tags:
        - Notifications and public
      summary: Public platform feedback endpoint, no auth
      description: >-
        Accepts JSON feedback or multipart form data with an optional
        `screenshot` image. Screenshots are stored as private attachments on the
        created feedback issue.
      operationId: post_api_feedback
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FeedbackInput'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/FeedbackInput'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
        '201':
          description: Created
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          description: Feedback rate limit
          headers:
            Retry-After:
              schema:
                type: string
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
        '500':
          $ref: '#/components/responses/ServerError'
components:
  schemas:
    FeedbackInput:
      type: object
      properties:
        type:
          type: string
          enum:
            - bug
            - feature
        description:
          type: string
        userEmail:
          type: string
          format: email
        userName:
          type: string
        url:
          type: string
        screenshot:
          type: string
          format: binary
          description: >-
            Optional multipart image file, PNG/JPEG/GIF/WebP, max 5MB. Stored as
            a private attachment on the created feedback issue.
      required:
        - description
      additionalProperties: true
    Error:
      type: object
      properties:
        error:
          type: string
        code:
          type: string
      required:
        - error
      additionalProperties: true
  responses:
    BadRequest:
      description: Invalid request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Unauthorized:
      description: Missing or invalid authentication
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Forbidden:
      description: Authenticated but not allowed
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: Resource not found or not visible
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    ServerError:
      description: Unexpected server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: sk_atoll_<key>

````