Skip to main content
POST
/
service
/
fanResponseAthleteCounterOffer
Fan responds to athlete counter-offer
curl --request POST \
  --url http://localhost/mogl/mogl-backend/api/service/fanResponseAthleteCounterOffer \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "request_id": 1,
  "status": "Accepted",
  "additional_amount": 5,
  "processing_fee": 5,
  "mogl_service_fee": 5
}
'

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
request_id
integer
Example:

1

status
enum<string>

Response status (NOT action, case-sensitive)

Available options:
Accepted,
Rejected
Example:

"Accepted"

additional_amount
number<float>

Used when accepting

Example:

5

processing_fee
number<float>

Used when accepting

Example:

5

mogl_service_fee
number<float>

Used when accepting

Example:

5

Response

200

Response submitted