Skip to main content
POST
/
partner
/
deliverableReport-columnSelector-update
Update deliverable report column visibility preferences
curl --request POST \
  --url http://localhost/mogl/mogl-backend/api/partner/deliverableReport-columnSelector-update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "deal_id": "Y",
  "deal_name": "N",
  "category": "N",
  "athlete_name": "Y",
  "hire_date": "Y",
  "deal_completion_date": "N",
  "deliverable_id": "N",
  "deliverable_number": "N",
  "deliverable_type": "Y",
  "due_date": "N",
  "submitted": "N",
  "submitted_date": "N",
  "approved": "N",
  "approval_date": "N",
  "preview": "Y",
  "proof_of_work": "N",
  "cost": "Y",
  "cpm": "Y",
  "impressions": "N",
  "cpe": "Y",
  "total_engagements": "N",
  "engagement_rate": "Y",
  "comments": "N",
  "likes": "N",
  "shares": "N",
  "bookmarks": "N",
  "retweets": "N",
  "last_date_refresh": "Y"
}
'
{
  "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"

deal_name
enum<string>

Show Deal Name column

Available options:
Y,
N
Example:

"N"

category
enum<string>

Show Category column

Available options:
Y,
N
Example:

"N"

athlete_name
enum<string>

Show Athlete Name column

Available options:
Y,
N
Example:

"Y"

hire_date
enum<string>

Show Hire Date column

Available options:
Y,
N
Example:

"Y"

deal_completion_date
enum<string>

Show Deal Completion Date column

Available options:
Y,
N
Example:

"N"

deliverable_id
enum<string>

Show Deliverable ID column

Available options:
Y,
N
Example:

"N"

deliverable_number
enum<string>

Show Deliverable Number column

Available options:
Y,
N
Example:

"N"

deliverable_type
enum<string>

Show Deliverable Type column

Available options:
Y,
N
Example:

"Y"

due_date
enum<string>

Show Due Date column

Available options:
Y,
N
Example:

"N"

submitted
enum<string>

Show Submitted column

Available options:
Y,
N
Example:

"N"

submitted_date
enum<string>

Show Submitted Date column

Available options:
Y,
N
Example:

"N"

approved
enum<string>

Show Approved column

Available options:
Y,
N
Example:

"N"

approval_date
enum<string>

Show Approval Date column

Available options:
Y,
N
Example:

"N"

preview
enum<string>

Show Preview column

Available options:
Y,
N
Example:

"Y"

proof_of_work
enum<string>

Show Proof of Work column

Available options:
Y,
N
Example:

"N"

cost
enum<string>

Show Cost column

Available options:
Y,
N
Example:

"Y"

cpm
enum<string>

Show CPM column

Available options:
Y,
N
Example:

"Y"

impressions
enum<string>

Show Impressions column

Available options:
Y,
N
Example:

"N"

cpe
enum<string>

Show CPE column

Available options:
Y,
N
Example:

"Y"

total_engagements
enum<string>

Show Total Engagements column

Available options:
Y,
N
Example:

"N"

engagement_rate
enum<string>

Show Engagement Rate column

Available options:
Y,
N
Example:

"Y"

comments
enum<string>

Show Comments column

Available options:
Y,
N
Example:

"N"

likes
enum<string>

Show Likes column

Available options:
Y,
N
Example:

"N"

shares
enum<string>

Show Shares column

Available options:
Y,
N
Example:

"N"

bookmarks
enum<string>

Show Bookmarks column

Available options:
Y,
N
Example:

"N"

retweets
enum<string>

Show Retweets column

Available options:
Y,
N
Example:

"N"

last_date_refresh
enum<string>

Show Last Data Refresh column

Available options:
Y,
N
Example:

"Y"

Response

200 - application/json

Preferences updated

status
string
Example:

"success"

message
string
Example:

"Column Selector updated successfully"