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>",
  "userEmail": "jsmith@example.com",
  "userName": "<string>",
  "url": "<string>",
  "screenshot": "<string>"
}
'
{}

Authorizations

Authorization
string
header
required

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

Body

description
string
required
type
enum<string>
Available options:
bug,
feature
userEmail
string<email>
userName
string
url
string
screenshot
file

Optional multipart image file, PNG/JPEG/GIF/WebP, max 5MB. Stored as a private attachment on the created feedback issue.

Response

Successful response

The response is of type object.