cURL
curl --request GET \ --url https://api.example.com/v1/reviews/{reviewId}
{ "403": {}, "404": {}, "reviewId": "<string>", "analysisId": "<string>", "status": "<string>", "priority": "<string>", "reviewType": "<string>", "assignedTo": { "userId": "<string>", "email": "<string>", "name": "<string>", "role": "<string>" }, "createdAt": "<string>", "startedAt": "<string>", "completedAt": "<string>", "deadline": "<string>", "findings": { "fraudConfirmed": true, "riskAssessment": "<string>", "notes": "<string>", "flaggedSections": [ {} ], "recommendedActions": [ {} ] }, "analysis": {} }
Retrieve detailed information about a specific review
analysis
transcription
history
reviewer
Show assignedTo properties
Show findings properties
curl -X GET "https://api.authentivoice.com/v1/reviews/rev_abc123def456?include=analysis,history" \ -H "Authorization: Bearer YOUR_TOKEN"
{ "reviewId": "rev_abc123def456", "analysisId": "ana_1234567890abcdef", "status": "completed", "priority": "high", "reviewType": "detailed", "assignedTo": { "userId": "user_789012", "email": "jane.reviewer@company.com", "name": "Jane Reviewer", "role": "Senior Reviewer" }, "createdAt": "2024-01-15T12:00:00Z", "startedAt": "2024-01-15T12:15:00Z", "completedAt": "2024-01-15T12:45:00Z", "deadline": "2024-01-16T17:00:00Z", "findings": { "fraudConfirmed": true, "riskAssessment": "high", "notes": "Confirmed multiple fraud indicators. Caller used social engineering tactics to obtain personal information. Clear urgency pressure and false authority claims.", "flaggedSections": [ { "timestamp": "00:45-01:20", "reason": "Urgency tactics" }, { "timestamp": "02:15-02:45", "reason": "Personal info request" } ], "recommendedActions": [ "Report to fraud prevention team", "Block caller number", "Contact affected customer", "File regulatory report" ] }, "analysis": { "riskScore": 85, "riskLevel": "high", "fraudIndicators": [ { "type": "urgency_language", "confidence": 0.92 }, { "type": "authority_claim", "confidence": 0.88 } ] } }
{ "history": [ { "timestamp": "2024-01-15T12:00:00Z", "event": "created", "user": "system" }, { "timestamp": "2024-01-15T12:05:00Z", "event": "assigned", "user": "system", "details": { "assignedTo": "user_789012" } }, { "timestamp": "2024-01-15T12:15:00Z", "event": "started", "user": "user_789012" }, { "timestamp": "2024-01-15T12:45:00Z", "event": "completed", "user": "user_789012" } ] }
{ "error": { "code": "REVIEW_NOT_FOUND", "message": "The specified review was not found" } }
{ "error": { "code": "ACCESS_DENIED", "message": "You do not have permission to view this review" } }