POST
/
api
/
conversations
/
{conversation_id}
/
submit-feedback
curl --request POST \
  --url https://app.all-hands.dev/api/conversations/{conversation_id}/submit-feedback \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "jsmith@example.com",
  "version": "<string>",
  "permissions": "private",
  "polarity": "<string>",
  "feedback": "<string>"
}'
{}

Authorizations

Authorization
string
header
required

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

Path Parameters

conversation_id
string
required

Conversation ID

Body

application/json

Response

200
application/json

Feedback submitted successfully

The response is of type object.