curl --request POST \
--url http://localhost/mogl/mogl-backend/api/partner/screeningQuestionReport \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"date_filter_range": "last_month",
"job_id": 100,
"athlete_id": 200,
"sort_column": "deal_id",
"sort_order": "DESC",
"timezone_diff": -5,
"page": 1,
"limit": 10,
"page_limit": 25,
"filter": []
}
'{
"status": "success",
"message": "data found",
"max_questions": 5,
"data": []
}Retrieves paginated screening question report data grouped by Deal + Athlete. Each row contains dynamic question/answer columns (question_1, answer_1, question_2, answer_2, etc.). Response includes max_questions count for frontend column generation.
curl --request POST \
--url http://localhost/mogl/mogl-backend/api/partner/screeningQuestionReport \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"date_filter_range": "last_month",
"job_id": 100,
"athlete_id": 200,
"sort_column": "deal_id",
"sort_order": "DESC",
"timezone_diff": -5,
"page": 1,
"limit": 10,
"page_limit": 25,
"filter": []
}
'{
"status": "success",
"message": "data found",
"max_questions": 5,
"data": []
}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.
Date range filter
last_month, last_week, this_week, All "last_month"
Filter by specific job/deal ID
100
Filter by specific athlete ID
200
Column key to sort by (static: deal_id, athlete_name, application_id, timestamp. Dynamic: question_1, answer_1, question_2, etc.)
"deal_id"
Sort direction
asc, desc, ASC, DESC "DESC"
Timezone offset in decimal hours from UTC
-5
Page number
1
Items per page (default 10)
10
Alias for limit (takes priority over limit if both sent)
25
Column-level filters
Show child attributes
[]