Skip to main content
POST
/
partner
/
screeningQuestionReport-columnSelector-update
Update screening question report column visibility preferences
curl --request POST \
  --url http://localhost/mogl/mogl-backend/api/partner/screeningQuestionReport-columnSelector-update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "deal_id": "Y",
  "athlete_name": "Y",
  "application_id": "Y",
  "all_questions": "Y",
  "all_answers": "N",
  "timestamp": "N"
}
'
{
  "status": "success",
  "message": "Column Selector updated successfully"
}

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
deal_id
enum<string>

Show Deal ID column

Available options:
Y,
N
Example:

"Y"

athlete_name
enum<string>

Show Athlete Name column

Available options:
Y,
N
Example:

"Y"

application_id
enum<string>

Show Application ID column

Available options:
Y,
N
Example:

"Y"

all_questions
enum<string>

Show All Questions column

Available options:
Y,
N
Example:

"Y"

all_answers
enum<string>

Show All Answers column

Available options:
Y,
N
Example:

"N"

timestamp
enum<string>

Show Timestamp column

Available options:
Y,
N
Example:

"N"

Response

200 - application/json

Preferences updated

status
string
Example:

"success"

message
string
Example:

"Column Selector updated successfully"