Query User Negative Balance Auto Exchange Record (USER_DATA)
API Description
Query user negative balance auto exchange record
HTTP Request
GET /papi/v1/portfolio/negative-balance-exchange-record
Request Weight
100
Request Parameters
| Name | Type | Mandatory | Description | 
|---|---|---|---|
| startTime | LONG | YES | |
| endTime | LONG | YES | |
| recvWindow | LONG | NO | The value cannot be greater than 60000 | 
| timestamp | LONG | YES | 
Note
- Response in descending order
 - The max interval between
 startTimeandendTimeis 3 months.
Response Example
{
  "total": 2,
  "rows": [
    {
      "startTime": 1736263046841,
      "endTime": 1736263248179,
      "details": [
        {
          "asset": "ETH",
          "negativeBalance": 18,  //negative balance amount
          "negativeMaxThreshold": 5  //the max negative balance threshold
        }
      ]
    },
    {
      "startTime": 1736184913252,
      "endTime": 1736184965474,
      "details": [
        {
          "asset": "BNB",
          "negativeBalance": 1.10264488,
          "negativeMaxThreshold": 0
        }
      ]
    }
  ]
}