curl --request POST \
--url http://localhost/mogl/mogl-backend/api/applyJob \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"id": 1,
"sign_agreement_upfront": true,
"agreement_signed_name": "Jane Athlete",
"will_disclose": "Y",
"image": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUg...",
"question_answer": []
}
'Apply authenticated athlete to a job. Requires agreement acceptance.
curl --request POST \
--url http://localhost/mogl/mogl-backend/api/applyJob \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"id": 1,
"sign_agreement_upfront": true,
"agreement_signed_name": "Jane Athlete",
"will_disclose": "Y",
"image": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUg...",
"question_answer": []
}
'Documentation Index
Fetch the complete documentation index at: https://developer.mogl.online/llms.txt
Use this file to discover all available pages before exploring further.
JWT Bearer token authentication. Use the /api/login endpoint to obtain a token.
Job ID
1
Must be true
true
Name for agreement signing
"Jane Athlete"
Will disclose (default N)
Y, N "Y"
Optional base64 image attachment
"data:image/png;base64,iVBORw0KGgoAAAANSUhEUg..."
Screening question answers
[]Applied successfully