curl --request PUT \
--url https://api.avidoai.com/v0/human-annotations/{id} \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--header 'x-application-id: <api-key>' \
--data @- <<EOF
{
"verdict": false,
"critique": "After review, the response does not adequately address the user's concern about data privacy."
}
EOF{
"data": {
"id": "789e4567-e89b-12d3-a456-426614174000",
"orgId": "org_123456",
"applicationId": "456e7890-e89b-12d3-a456-426614174000",
"traceId": "12345678-1234-1234-1234-1234567890ab",
"verdict": true,
"source": "REVIEW_QUEUE",
"topicId": "789e4567-e89b-12d3-a456-426614174000",
"createdAt": "2024-01-05T12:34:56.789Z",
"modifiedAt": "2024-01-05T12:34:56.789Z",
"critique": "The agent answered an unrelated policy question.",
"annotatorId": "user_789012",
"queueItemId": "abcdef01-e89b-12d3-a456-426614174000",
"issueId": "fedcba98-e89b-12d3-a456-426614174000"
}
}{
"message": "Resource not found"
}{
"message": "Invalid request data",
"issues": [
{
"code": "invalid_string",
"message": "Invalid UUID",
"path": [
"id"
]
}
]
}{
"message": "Resource not found"
}Human Annotations
Update a human annotation
Updates an existing human annotation. Both verdict and critique can be modified. When verdict is changed to false, critique must meet the minimum length requirement
PUT
/
v0
/
human-annotations
/
{id}
curl --request PUT \
--url https://api.avidoai.com/v0/human-annotations/{id} \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--header 'x-application-id: <api-key>' \
--data @- <<EOF
{
"verdict": false,
"critique": "After review, the response does not adequately address the user's concern about data privacy."
}
EOF{
"data": {
"id": "789e4567-e89b-12d3-a456-426614174000",
"orgId": "org_123456",
"applicationId": "456e7890-e89b-12d3-a456-426614174000",
"traceId": "12345678-1234-1234-1234-1234567890ab",
"verdict": true,
"source": "REVIEW_QUEUE",
"topicId": "789e4567-e89b-12d3-a456-426614174000",
"createdAt": "2024-01-05T12:34:56.789Z",
"modifiedAt": "2024-01-05T12:34:56.789Z",
"critique": "The agent answered an unrelated policy question.",
"annotatorId": "user_789012",
"queueItemId": "abcdef01-e89b-12d3-a456-426614174000",
"issueId": "fedcba98-e89b-12d3-a456-426614174000"
}
}{
"message": "Resource not found"
}{
"message": "Invalid request data",
"issues": [
{
"code": "invalid_string",
"message": "Invalid UUID",
"path": [
"id"
]
}
]
}{
"message": "Resource not found"
}Authorizations
Your unique Avido API key
Your unique Avido Application ID
Path Parameters
The unique identifier of the human annotation
Pattern:
^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$Example:
"789e4567-e89b-12d3-a456-426614174000"
Body
application/json
Response
Human annotation updated successfully
Successful response containing a single human annotation
A single SME judgement recorded against a trace. Captures whether the AI response was acceptable (verdict) and an optional critique
Show child attributes
Show child attributes