Skip to main content
POST
/
partner
/
screeningQuestionReport
Get screening question report data
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.

Authorizations

Authorization
string
header
required

JWT Bearer token authentication. Use the /api/login endpoint to obtain a token.

Body

application/json
date_filter_range
enum<string>

Date range filter

Available options:
last_month,
last_week,
this_week,
All
Example:

"last_month"

job_id
integer

Filter by specific job/deal ID

Example:

100

athlete_id
integer

Filter by specific athlete ID

Example:

200

sort_column
string

Column key to sort by (static: deal_id, athlete_name, application_id, timestamp. Dynamic: question_1, answer_1, question_2, etc.)

Example:

"deal_id"

sort_order
enum<string>

Sort direction

Available options:
asc,
desc,
ASC,
DESC
Example:

"DESC"

timezone_diff
number<float>

Timezone offset in decimal hours from UTC

Example:

-5

page
integer | null

Page number

Example:

1

limit
integer | null

Items per page (default 10)

Example:

10

page_limit
integer | null

Alias for limit (takes priority over limit if both sent)

Example:

25

filter
object

Column-level filters

Example:
[]

Response

200 - application/json

Report data

status
string
Example:

"success"

message
string
Example:

"data found"

max_questions
integer

Maximum number of questions across all rows

Example:

5

data
object
Example:
[]