Skip to main content
POST
/
paymentHistoryPartner
Get partner payment history
curl --request POST \
  --url http://localhost/mogl/mogl-backend/api/paymentHistoryPartner \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "sort_order_req": "desc",
  "jobTitle": "test",
  "athleteName": "test",
  "minAmount": 10,
  "maxAmount": 1000,
  "paymentMode": "C",
  "status": "Success",
  "paymentDate": "2026-01-01",
  "page": 1,
  "limit": 10,
  "page_limit": 10
}
'

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
sort_order_req
enum<string>
Available options:
new_to_old,
old_to_new,
high_to_low,
low_to_high
Example:

"desc"

jobTitle
string

LIKE filter on job name

Example:

"test"

athleteName
string

LIKE filter on athlete name

Example:

"test"

minAmount
number

= filter on amount

Example:

10

maxAmount
number

<= filter on amount

Example:

1000

paymentMode
string

Exact match on payment mode

Example:

"C"

status
string

Exact match on status (skip if 'All')

Example:

"Success"

paymentDate
string

Date filter on created_at

Example:

"2026-01-01"

page
integer
Example:

1

limit
integer
Example:

10

page_limit
integer

Alias for limit

Example:

10

Response

200

Partner payment history