GetAccountWithdrawTransactions

Category: User Permissions: Trading, AccountReadOnly Call Type: Synchronous

Obtains a list of withdrawals for an account.

Users with Trading and AccountReadOnly permission can return withdrawal transactions only from an account with which they are associated.

The owner of the trading venue determines how long to retain transaction history before archiving.

Note: Depth in this call is a count of how many withdrawal transactions to report. It is not "depth of market."

Request

{
    "OMSId": 1,
    "AccountId": 1,
    "Depth": 200
}

Response

[
  {
    "transactionId":0,
    "omsId":0,
    "accountId":0,
    "cr":0.0,
    "dr":0.0,
    "counterparty":0,
    "transactionType":0,
    "referenceId":0,
    "referenceType":0,
    "productId":0,
    "balance":0.0,
    "timeStamp":0
    },
]

The response returns an array of transaction objects.

Last updated

Logo