curl --request POST \
--url http://localhost/mogl/mogl-backend/api/partner/deliverableReport \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"date_filter_range": "last_month",
"job_id": 100,
"athlete_id": 200,
"deliverable_id": 300,
"sort_column": "deal_id",
"sort_order": "DESC",
"timezone_diff": -5,
"page": 1,
"limit": 10,
"page_limit": 25,
"filter": []
}
'{
"status": "success",
"message": "data found",
"data": []
}Retrieves paginated deliverable report data with comprehensive filtering, sorting, and subscription-based access control. Shows deals, athletes, deliverables, and performance metrics. Engagement metrics (CPM, CPE, impressions) require premium subscription.
curl --request POST \
--url http://localhost/mogl/mogl-backend/api/partner/deliverableReport \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"date_filter_range": "last_month",
"job_id": 100,
"athlete_id": 200,
"deliverable_id": 300,
"sort_column": "deal_id",
"sort_order": "DESC",
"timezone_diff": -5,
"page": 1,
"limit": 10,
"page_limit": 25,
"filter": []
}
'{
"status": "success",
"message": "data found",
"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. Predefined: last_month, last_week, this_week, All. Or custom range as 'YYYY/MM/DD-YYYY/MM/DD'
"last_month"
Filter by specific job/deal ID
100
Filter by specific athlete ID
200
Filter by milestone template ID (milestones.id)
300
Column key to sort by
deal_id, deal_name, category, athlete_name, hire_date, deal_completion_date, deliverable_id, deliverable_number, deliverable_type, due_date, submitted, submitted_date, approved, approval_date, preview, proof_of_work, cost, cpm, impressions, cpe, total_engagements, engagement_rate, comments, likes, shares, bookmarks, retweets, last_date_refresh "deal_id"
Sort direction
asc, desc, ASC, DESC "DESC"
Timezone offset in decimal hours from UTC (e.g. -5.5 for EST)
-5
Page number
1
Items per page (default 10)
10
Alias for limit (takes priority over limit if both sent)
25
Column-level filters object. Keys are column names, values are filter objects.
Show child attributes
[]