curl --request POST \
--url http://localhost/mogl/mogl-backend/api/partner/dismiss-contract-request \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"job_id": 100,
"athlete_id": 200
}
'{
"status": "success",
"message": "Contract request dismissed successfully"
}Dismiss a pending contract request from an athlete. Updates application status and marks requests as rejected (‘R’ status). Removes pending contract cancellation (CC) and due date extension (EDD) requests. Does not affect active contracts.
curl --request POST \
--url http://localhost/mogl/mogl-backend/api/partner/dismiss-contract-request \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"job_id": 100,
"athlete_id": 200
}
'{
"status": "success",
"message": "Contract request dismissed 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.
JWT Bearer token authentication. Use the /api/login endpoint to obtain a token.