Skip to main content
GET
/
users
/
payments
Get User Payments
curl --request GET \
  --url https://api-dev.monyfix.tech/users/payments \
  --header 'Authorization: Bearer <token>'
[
{
"id": "<string>",
"amount": "<string>",
"description": "<string>",
"order_id": "<string>",
"status": "<string>",
"round_id": "<string>"
}
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successful Response

id
string
required
amount
string
required
description
string
required
order_id
string
required
status
string
required
round_id
string
required