Request
Parameters
string
required
Roblox user ID submitting the application
string
required
Application centre ID
object
required
Object containing question IDs and answers
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Submit an application with answers
curl -X POST https://api.series.hr/applications/submit \
-H "apikey: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"UserId": "714760171",
"CentreId": "centre_123",
"answers": {
"question_1": "Answer to first question",
"question_2": "Answer to second question"
}
}'
{
"success": true,
"data": {
"applicationId": "app_xyz789",
"UserId": "714760171",
"CentreId": "centre_123",
"status": "submitted",
"submittedAt": "2024-01-15T10:30:00Z"
}
}
