Skip to main content
POST
/
api
/
v1
/
feedback
/
submit
Submit feedback, bug reports, or feature requests.
curl --request POST \
  --url https://foundry-api-public.adaptyvbio.com/api/v1/feedback/submit \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "feedback_type": "feature_request",
  "request_uuid": "01900abc-1234-7890-1234-567890abcdef",
  "human_note": "Got 500 error when creating experiment",
  "json_body": "<unknown>",
  "title": "Timeout when creating experiment"
}
'
{
  "message": "<string>",
  "reference": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2"
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Feedback submission request.

feedback_type
enum<string>
required

Feedback category.

Available options:
feature_request,
feedback,
bug_report
request_uuid
string
required

UUID of the request that prompted this feedback.

Example:

"01900abc-1234-7890-1234-567890abcdef"

human_note
string | null

Human-readable text note (optional, can be combined with json_body).

Example:

"Got 500 error when creating experiment"

json_body
any

Structured JSON details (optional, can be combined with human_note).

title
string | null

Optional short title. If omitted or blank, a default is used.

Example:

"Timeout when creating experiment"

Response

Feedback submitted successfully

Feedback submission response.

message
string
required

Confirmation message.

reference
string
required

Feedback reference for future correspondence.

Example:

"a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2"