Skip to main content
POST
/
applications
/
check-eligibility
Check Eligibility
curl --request POST \
  --url https://api.series.hr/applications/check-eligibility \
  --header 'Content-Type: application/json' \
  --header 'apikey: <api-key>' \
  --data '
{
  "UserId": "<string>",
  "CentreId": "<string>"
}
'
Check if a user meets the eligibility requirements to submit an application.

Request

curl -X POST https://api.series.hr/applications/check-eligibility \
  -H "apikey: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "UserId": "714760171"
    "CentreId": "centre_123"
  }'

Parameters

UserId
string
required
Roblox user ID to check

Response

200
{
  "success": true,
  "data": {
    "UserId": "714760171",
    "eligible": true,
    "requirements": {
      "accountAgeRequired": true,
      "experiencePointsRequired": true,
      "noActiveBans": true
    }
  }
}

Authorizations

apikey
string
header
required

Body

application/json
UserId
string
required
CentreId
string
required

Response

200

Eligibility check result