Skip to main content
POST
/
api
/
support
/
report_bug
Report Bug
curl --request POST \
  --url https://api.example.com/api/support/report_bug \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form 'title=<string>' \
  --form 'description=<string>' \
  --form 'contact=<string>' \
  --form 'files=<string>' \
  --form files.0.items='@example-file'
{
  "status": "<string>",
  "id": "<string>"
}

Authorizations

Authorization
string
header
required

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

Headers

X-API-Key
string | null

Cookies

antidote_session
string | null

Body

multipart/form-data
title
string
required
description
string
required
contact
string | null
files
file[] | null

Response

Successful Response

status
string
required
id
string
required