latestOpenAPI 3.0.32026-08-224982,0272.8 MB

e445c15e5bee

Margin

List collateral withdrawal requests

List all collateral withdrawal requests for an account.

get/api/prime/trading/v1/accounts/{accountId}/margin/collateral/withdrawalrequests

Path parameters

accountIdstring required

The ID of the account

Query parameters

offsetinteger

Pagination offset

limitinteger

Number of items per page

Response

List of collateral withdrawal requests

Example response

{
  "data": [
    {
      "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "accountId": "account123",
      "enterpriseId": "enterprise456",
      "currency": "BTC",
      "quantity": "0.5",
      "status": "pending",
      "createdBy": "user789",
      "creationDate": "2024-01-15T10:30:00.000Z",
      "modifiedDate": "2024-01-15T10:30:00.000Z"
    }
  ]
}