curl --request POST \
--url http://localhost/mogl/mogl-backend/api/agent/request-new-due-date-for-deal \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"job_id": 1,
"athlete_id": 123,
"new_due_date": "2026-12-31",
"reason": "Need more time for travel logistics"
}
'Request a new due date for an athlete’s job. Note: new_due_date and reason are accepted but not currently used by the backend — a fixed message is sent instead.
curl --request POST \
--url http://localhost/mogl/mogl-backend/api/agent/request-new-due-date-for-deal \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"job_id": 1,
"athlete_id": 123,
"new_due_date": "2026-12-31",
"reason": "Need more time for travel logistics"
}
'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.
Job ID
1
Athlete user ID
123
Requested new due date (accepted but not used by backend currently)
"2026-12-31"
Reason for extension (accepted but not used by backend currently)
"Need more time for travel logistics"
Due date request submitted