Get Repay List
Type: GET
Description: /v4/lever/repay
Parameters
Name | Type | Mandatory | Default | Description | Ranges |
---|---|---|---|---|---|
Symbol | String | No | - | Trading pair | - |
StartTime | Long | Yes | - | Start time | - |
EndTime | Long | No | - | End time | - |
FromId | Long | No | - | Page start ID | - |
Direction | String | Yes | - | Page direction | NEXT / PREV |
Limit | Int | No | 20 | Page limit | Default 20 |
Response Example
Response
{
"rc": 0,
"mc": "SUCCESS",
"ma": [{}],
"result": {
"hasNext": true, // Whether has next page
"hasPrev": true, // Whether has previous page
"items": [
{
"id": "string", // Repay record ID
"amount": 0, // Repay amount
"currency": "string", // Currency
"currencyId": 0, // Currency ID
"symbol": "string", // Trading pair symbol
"symbolId": 0, // Symbol ID
"interestAmount": 0, // Interest amount
"type": "MANUAL", // Repay type: MANUAL / SYSTEM
"createTime": 0 // Create time (timestamp)
}
]
}
}