Skip to main content
POST
/
manualPaymentSubmit
Submit manual/offline payment (amount taken from milestone price, not from request)
curl --request POST \
  --url http://localhost/mogl/mogl-backend/api/manualPaymentSubmit \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": 1,
  "athlete_id": 123,
  "milestone_id": 1
}
'

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
id
integer

Job ID (NOT job_id, required)

Example:

1

athlete_id
integer

Required

Example:

123

milestone_id
integer

Required

Example:

1

Response

200

Manual payment submitted