curl --request POST \
--url http://localhost/mogl/mogl-backend/api/external/getExternalJobApplicants \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"token": "abc123def456",
"page": 1,
"limit": 12,
"athlete_id": 123,
"date_filter_range": "last_month",
"sort_column": "athlete_name",
"sort_order": "DESC",
"timezone_diff": -5,
"filter": []
}
'Retrieves paginated list of applicants for an external job link. Supports filtering by athlete, date range, sorting, and advanced column filters. Requires valid external token verification (middleware).
curl --request POST \
--url http://localhost/mogl/mogl-backend/api/external/getExternalJobApplicants \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"token": "abc123def456",
"page": 1,
"limit": 12,
"athlete_id": 123,
"date_filter_range": "last_month",
"sort_column": "athlete_name",
"sort_order": "DESC",
"timezone_diff": -5,
"filter": []
}
'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.
External job link token (required by middleware)
"abc123def456"
Page number (default 1)
1
Items per page, max 100 (default 12)
12
Filter by specific athlete ID
123
Date range filter
"last_month"
Column to sort by
"athlete_name"
asc, desc, ASC, DESC "DESC"
Timezone offset
-5
Column-level filters (AG Grid style)
[]External applicants list