Skip to content

Get Transactions

Request

Get wallet transactions by participant ID between start (exclusive) and end (exclusive) dates.

Security
api-key
Query
participantIdstring

ID of participant to get transactions from. This is only useful for brokers.

startDateTimeinteger, (int64)required

Fetch wallet transactions since startDateTime

endDateTimeinteger, (int64)required

Fetch wallet transactions until endDateTime

pageableobject(Pageable)required
Example:page=0&size=1
GET
/public-api/1.0/xbid/wallets/transactions
curl -i -X GET \
  'https://acc-trading.etpa.nl/public-api/1.0/xbid/wallets/transactions?participantId=string&startDateTime=0&endDateTime=0&pageable=page%3D0%26size%3D1' \
  -H 'api_key: YOUR_API_KEY_HERE'

Responses

Requested transactions

Bodyapplication/json
idstringrequired
participantIdstringrequired
creationDatestring, (date-time)required
orderIdstring
walletActionstring
Enum:"BUY""SELL""REFUND""DEPOSIT""WITHDRAWAL"
amountnumberrequired
tradeIdsArray of strings, uniquerequired
Response
{ "id": "string", "participantId": "string", "creationDate": "2019-08-24T14:15:22Z", "orderId": "string", "walletAction": "BUY", "amount": 0, "tradeIds": [ "string" ] }