Skip to main content
POST
/
api
/
feedback
Public platform feedback endpoint, no auth
curl --request POST \
  --url https://atollhq.com/api/feedback \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "description": "<string>",
  "type": "bug",
  "userEmail": "jsmith@example.com",
  "userName": "<string>",
  "url": "<string>"
}
'
{}

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.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
description
string
required
type
enum<string>
Available options:
bug,
feature
userEmail
string<email>
userName
string
url
string

Response

Successful response

The response is of type object.