curl --request POST \
--url http://localhost/mogl/mogl-backend/api/partner/bulk-hiring \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"job_id": 100,
"partner_job_applied_mapping_ids": [],
"excluded_partner_job_applied_mapping_ids": []
}
'Start a bulk hiring process for multiple athletes. Either provide a list of application IDs or a job_id to hire all applicants. Process runs asynchronously and can take up to an hour.
curl --request POST \
--url http://localhost/mogl/mogl-backend/api/partner/bulk-hiring \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"job_id": 100,
"partner_job_applied_mapping_ids": [],
"excluded_partner_job_applied_mapping_ids": []
}
'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 to bulk hire for (required without partner_job_applied_mapping_ids)
100
Array of application mapping IDs to hire (required without job_id)
[]Array of application IDs to exclude from bulk hiring
[]Bulk hiring process started