Skip to main content
POST
/
sendFeedback
Send feedback
curl --request POST \
  --url https://api.parcha.ai/api/v1/sendFeedback \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "jobId": "<string>",
  "key": "<string>",
  "comment": "<string>",
  "value": "<string>",
  "score": 123,
  "row_id": "<string>"
}'

Authorizations

Authorization
string
header
required

JWT token obtained from the authentication endpoint

Body

application/json
jobId
string
required

The ID of the job

key
string
required

The feedback key identifier

comment
string

Optional comment

value
string

The feedback value

score
number

Optional numeric score

row_id
string

Optional row identifier

Response

200

Feedback sent successfully

I