Skip to main content
GET
/
storereviewerdetails
/
{recordVerificationId}
curl https://api.yourservice.com/api/v1/storereviewerdetails/ver_live_abc123
{
  "success": true,
  "data": {
    "recordVerificationId": "ver_live_abc123",
    "name": "Priya Sharma",
    "email": "priya.sharma@techcorp.com",
    "company": "TechCorp",
    "website": "https://techcorp.com"
  }
}
No authentication required for this endpoint.

Path Parameters

recordVerificationId
string
required
The verification session ID to look up.

Error Codes

CodeHTTPDescription
MISSING_VERIFICATION_ID400Path parameter is missing
NOT_FOUND404No reviewer details found for this session
INTERNAL_ERROR500Unexpected server error
curl https://api.yourservice.com/api/v1/storereviewerdetails/ver_live_abc123
{
  "success": true,
  "data": {
    "recordVerificationId": "ver_live_abc123",
    "name": "Priya Sharma",
    "email": "priya.sharma@techcorp.com",
    "company": "TechCorp",
    "website": "https://techcorp.com"
  }
}