Skip to main content
GET
/
step3
/
store-verification-items
/
session
/
{sessionToken}
curl https://api.yourservice.com/api/v1/step3/store-verification-items/session/f47ac10b-58cc-4372-a567-0e02b2c3d479
{
  "success": true,
  "data": {
    "recordVerificationId": "ver_live_abc123",
    "recordUserId": "usr_live_xyz789",
    "externalStudentId": "student_123",
    "callbackWebhookUrl": "https://yourapp.com/webhooks/verification",
    "email": "arun@example.com",
    "name": "Arun Kumar",
    "projects": [
      { "projectId": "proj_001", "name": "E-Commerce App", "description": "Built with React and Node.js" }
    ],
    "experience": [
      { "workExperienceId": "exp_001", "role": "Frontend Developer", "companyName": "TechCorp" }
    ],
    "certificates": []
  }
}
Used by the frontend to display all projects, experiences, and certificates originally submitted during POST /verify so the student can select which to attach.
No authentication required for this endpoint.

Path Parameters

sessionToken
string
required
The session token returned from POST /verify.

Error Codes

CodeHTTPDescription
MISSING_SESSION_TOKEN400Path parameter is missing
SESSION_NOT_FOUND404Session is expired or invalid — student must restart verification
INTERNAL_ERROR500Unexpected server error
curl https://api.yourservice.com/api/v1/step3/store-verification-items/session/f47ac10b-58cc-4372-a567-0e02b2c3d479
{
  "success": true,
  "data": {
    "recordVerificationId": "ver_live_abc123",
    "recordUserId": "usr_live_xyz789",
    "externalStudentId": "student_123",
    "callbackWebhookUrl": "https://yourapp.com/webhooks/verification",
    "email": "arun@example.com",
    "name": "Arun Kumar",
    "projects": [
      { "projectId": "proj_001", "name": "E-Commerce App", "description": "Built with React and Node.js" }
    ],
    "experience": [
      { "workExperienceId": "exp_001", "role": "Frontend Developer", "companyName": "TechCorp" }
    ],
    "certificates": []
  }
}