Rebate Summary
Rebate Summary
After an order is executed, the system generates related rebate records. The rebate amount from the previous day becomes available at 12:00 UTC+8 the next day. This API service filters data based on the creation date of rebate records by converting the startTime and endTime parameters to dates in the UTC+8 timezone.
Request frequency limit: 1/1s
Request URL
GET /deepcoin/agents/users/rebates
Request Parameters
Field Name | Required | Type | Description |
---|---|---|---|
uid | false | integer | Subordinate UID |
type | false | integer | Normal rebate amount:0 Abnormal frozen amount: 1 Total amount: 2 |
startTime | false | integer | Query start time |
endTime | false | integer | Query end time |
Request Example
{
"uid": 1001,
"startTime": 1717090611,
"endTime": 1717090611
}
Response Parameters
Field Name | Type | Description |
---|---|---|
uid | integer | Subordinate user UID |
totalCommission | string | Total rebate for the date of the user's query timestamp |
Response Example
{
"msg": "",
"code": "0",
"data": {
"list": [
{
"totalCommission": "0.0002067",
"uid": 36009582
},
{
"totalCommission": "0.00041065",
"uid": 36009581
}
]
}
}