POST /v1/feedback files a report straight into our inbox. It is the same
endpoint behind the Send feedback button in the dashboard, and it accepts an
API key as well as a dashboard session, so an agent or a script can report the
thing it just hit.
Feedback costs no credits. An organization that has run out is exactly the one
most likely to have something to tell us.
Send feedback
Python
Any other field is rejected with
422, including email. We never take the
sender from the body: the address we reply to is read from your account, so a
report always comes from someone we can actually answer. On an API key that is
whoever created the key.
The response is 202, not 200. The mail is dispatched in the background, so
a 200 would be claiming a delivery we have not yet watched happen.
Limits
Ten reports an hour per member. Past that the endpoint answers429 with
too_many_attempts. A missing or invalid credential is 401.