Skip to main content
GET
/
step1
/
storeskills
/
{recordVerificationId}
curl https://api.yourservice.com/api/v1/step1/storeskills/ver_live_abc123
{
  "success": true,
  "data": {
    "recordVerificationId": "ver_live_abc123",
    "skills": [
      {
        "skillId": "skill_001",
        "name": "React",
        "proofUrls": ["https://github.com/user/project"]
      },
      {
        "skillId": "skill_002",
        "name": "Node.js",
        "proofUrls": []
      }
    ],
    "totalSkills": 2
  },
  "executionTime": "18ms"
}

Overview

Returns all skills stored for a given verification session, including resolved skill names and associated proof URLs.
No authentication required for this endpoint.

Path Parameters

recordVerificationId
string
required
The verification session ID to look up.

Response

success
boolean
true on success.
data
object

Error Codes

CodeHTTPDescription
MISSING_VERIFICATION_ID400Path parameter is missing
NOT_FOUND404No skills found for the given recordVerificationId
INTERNAL_ERROR500Unexpected server error
curl https://api.yourservice.com/api/v1/step1/storeskills/ver_live_abc123
{
  "success": true,
  "data": {
    "recordVerificationId": "ver_live_abc123",
    "skills": [
      {
        "skillId": "skill_001",
        "name": "React",
        "proofUrls": ["https://github.com/user/project"]
      },
      {
        "skillId": "skill_002",
        "name": "Node.js",
        "proofUrls": []
      }
    ],
    "totalSkills": 2
  },
  "executionTime": "18ms"
}