cURL
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 user can submit application
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" }'
{ "success": true, "data": { "UserId": "714760171", "eligible": true, "requirements": { "accountAgeRequired": true, "experiencePointsRequired": true, "noActiveBans": true } } }
Eligibility check result