curl --request GET \
--url https://app2.freyavoice.ai/api/v2/reviews \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"message": "<string>",
"result": {
"review": {
"id": "<string>",
"callId": "<string>",
"workspaceId": "<string>",
"reviewAssignee": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"reviewStatus": "No Review Status",
"reviewTag": "Successful",
"createdAt": "<string>",
"updatedAt": "<string>",
"reviewNotes": "<string>"
}
}
}
}Returns the review for a specific call, or null if no review exists.
curl --request GET \
--url https://app2.freyavoice.ai/api/v2/reviews \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"message": "<string>",
"result": {
"review": {
"id": "<string>",
"callId": "<string>",
"workspaceId": "<string>",
"reviewAssignee": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"reviewStatus": "No Review Status",
"reviewTag": "Successful",
"createdAt": "<string>",
"updatedAt": "<string>",
"reviewNotes": "<string>"
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.