curl --request POST \
--url http://localhost/mogl/mogl-backend/api/partner/get-single-payment-athlete-deliverable \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"job_id": 100,
"athlete_id": 200
}
'{
"status": "success",
"data": []
}Retrieves deliverable payment details for a single athlete on a specific job. Used in the individual payment flow.
curl --request POST \
--url http://localhost/mogl/mogl-backend/api/partner/get-single-payment-athlete-deliverable \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"job_id": 100,
"athlete_id": 200
}
'{
"status": "success",
"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.