# Complete a review
curl -X PUT https://api.authentivoice.com/v1/reviews/rev_abc123def456 \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"status": "completed",
"findings": {
"fraudConfirmed": true,
"riskAssessment": "high",
"notes": "Multiple fraud indicators confirmed. Caller attempted to obtain SSN and credit card information using urgency tactics.",
"flaggedSections": [
{
"timestamp": "01:23-01:55",
"reason": "Request for SSN"
},
{
"timestamp": "03:10-03:45",
"reason": "Credit card request"
}
],
"recommendedActions": [
"Block caller number",
"Notify affected customer",
"File fraud report"
],
"confidence": 0.95
}
}'