Skip to main content
POST
/
updateDueDatePartner
Update due date for athlete milestone (partner)
curl --request POST \
  --url http://localhost/mogl/mogl-backend/api/updateDueDatePartner \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "milestone_athlete_rel_id": 1,
  "due_date": "2026-04-20"
}
'

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
milestone_athlete_rel_id
integer
required

Milestone-athlete relationship ID

Example:

1

due_date
string<date>
required

New due date

Example:

"2026-04-20"

Response

200

Due date updated