Get Review
Retrieve complete details about a review, including associated analysis data and reviewer feedback.
Request
The unique identifier of the review
Additional data to include
analysis: Full analysis data
transcription: Call transcription
history: Review history and updates
reviewer: Detailed reviewer information
Response
Review status: pending, in_progress, completed, escalated
Review priority: low, normal, high, urgent
Type of review: standard, detailed, compliance, quality
Assigned reviewerShow assignedTo properties
Review creation timestamp
When review was completed
Review findings (if completed)
Whether fraud was confirmed
Reviewer’s risk assessment
Timestamps of concerning sections
Suggested follow-up actions
Full analysis data (if requested)
Examples
curl -X GET "https://api.authentivoice.com/v1/reviews/rev_abc123def456?include=analysis,history" \
-H "Authorization: Bearer YOUR_TOKEN"
Response Example
{
"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
}
]
}
}
Review History
When including history, you’ll see all status changes:
{
"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 Responses
Review not found{
"error": {
"code": "REVIEW_NOT_FOUND",
"message": "The specified review was not found"
}
}
Access denied{
"error": {
"code": "ACCESS_DENIED",
"message": "You do not have permission to view this review"
}
}