Skip to main content
POST
/
applications
/
submit
Submit Application
curl --request POST \
  --url https://api.series.hr/applications/submit \
  --header 'Content-Type: application/json' \
  --header 'apikey: <api-key>' \
  --data '
{
  "UserId": "<string>",
  "CentreId": "<string>",
  "answers": {}
}
'
Submit a new application with answers to application questions.

Request

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"
    }
  }'

Parameters

UserId
string
required
Roblox user ID submitting the application
CentreId
string
required
Application centre ID
answers
object
required
Object containing question IDs and answers

Response

201
{
  "success": true,
  "data": {
    "applicationId": "app_xyz789",
    "UserId": "714760171",
    "CentreId": "centre_123",
    "status": "submitted",
    "submittedAt": "2024-01-15T10:30:00Z"
  }
}

Authorizations

apikey
string
header
required

Body

application/json
UserId
string
required
CentreId
string
required
answers
object
required

Response

201

Application submitted