POST api/user/payouts
Get current user payout history
Request Information
URI Parameters
None.
Body Parameters
GeneralInput| Name | Description | Type | Additional information |
|---|---|---|---|
| SecurityToken | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"SecurityToken": "sample string 1"
}
Response Information
Resource Description
Collection of TX_Commission| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| RefNo | string |
None. |
|
| UserId | integer |
None. |
|
| Lvl | integer |
None. |
|
| Amount | decimal number |
None. |
|
| CreditDate | date |
None. |
|
| WalletAddress | string |
None. |
|
| PayoutId | string |
None. |
|
| PayoutDate | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"RefNo": "sample string 2",
"UserId": 1,
"Lvl": 1,
"Amount": 1.1,
"CreditDate": "2026-03-11T13:51:02.9880535+08:00",
"WalletAddress": "sample string 3",
"PayoutId": "sample string 4",
"PayoutDate": "2026-03-11T13:51:02.9880535+08:00"
},
{
"Id": 1,
"RefNo": "sample string 2",
"UserId": 1,
"Lvl": 1,
"Amount": 1.1,
"CreditDate": "2026-03-11T13:51:02.9880535+08:00",
"WalletAddress": "sample string 3",
"PayoutId": "sample string 4",
"PayoutDate": "2026-03-11T13:51:02.9880535+08:00"
}
]