Skip to main content
GET
/
step3
/
store-verification-items
/
get
/
{recordVerificationId}
curl https://api.yourservice.com/api/v1/step3/store-verification-items/get/ver_live_abc123
{
  "success": true,
  "data": {
    "recordVerificationId": "ver_live_abc123",
    "projects": [
      {
        "externalProjectId": "proj_001",
        "projectName": "E-Commerce App",
        "description": "Built with React and Node.js",
        "startDate": "2023-01-01T00:00:00.000Z",
        "endDate": null
      }
    ],
    "experience": [
      {
        "externalExpId": "exp_001",
        "companyName": "TechCorp",
        "role": "Frontend Developer",
        "startDate": "2022-06-01T00:00:00.000Z",
        "endDate": "2023-01-01T00:00:00.000Z"
      }
    ],
    "certificates": []
  },
  "executionTime": "22ms"
}
No authentication required for this endpoint.

Path Parameters

recordVerificationId
string
required
The verification session ID to look up.

Response

Returns all stored projects, work experiences, and certificates for the session. Fields like description, endDate, issuedCompanyName, and issueDate may be null if not provided during session init.
curl https://api.yourservice.com/api/v1/step3/store-verification-items/get/ver_live_abc123
{
  "success": true,
  "data": {
    "recordVerificationId": "ver_live_abc123",
    "projects": [
      {
        "externalProjectId": "proj_001",
        "projectName": "E-Commerce App",
        "description": "Built with React and Node.js",
        "startDate": "2023-01-01T00:00:00.000Z",
        "endDate": null
      }
    ],
    "experience": [
      {
        "externalExpId": "exp_001",
        "companyName": "TechCorp",
        "role": "Frontend Developer",
        "startDate": "2022-06-01T00:00:00.000Z",
        "endDate": "2023-01-01T00:00:00.000Z"
      }
    ],
    "certificates": []
  },
  "executionTime": "22ms"
}