User transactions

Get my transactions

Get all transactions of the current user

get/api/v1/transaction

Query parameters

filter_by'DEPOSIT' | 'WITHDRAWAL' | 'REFERRAL BONUS' | 'PROMO CODE' | 'REFUND'

Filter by type or empty for all

order_by'created_at' | 'amount'

Field to sort by

order_direction'asc' | 'desc'

'asc' or 'desc'

pageinteger
sizeinteger

Response

Successful Response

totalinteger required
pageinteger required
sizeinteger required
pagesinteger required

Example response

{
  "items": [
    {
      "amount": 0.4,
      "createdAt": "2021-08-01T00:00:00.000Z",
      "currency": "USD",
      "details": "Some details",
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "paymentProvider": "TRON",
      "type": "DEPOSIT"
    }
  ]
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.