Skip to main content
GET
/
v1
/
api
/
transactions
/
income
Get income transactions
curl --request GET \
  --url http://localhost:3091/v1/api/transactions/income \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "type": "INCOMING",
    "typeLabel": "<string>",
    "amount": 123,
    "currency": "<string>",
    "formattedAmount": "<string>",
    "transactionDate": "2023-11-07T05:31:56Z",
    "formattedDate": "<string>",
    "routeFrom": "<string>",
    "routeTo": "<string>",
    "formattedRoute": "<string>",
    "travelDate": "2023-11-07T05:31:56Z",
    "formattedTravelDate": "<string>",
    "otherPartyName": "<string>",
    "reservationNumber": "<string>",
    "status": "PENDING",
    "statusLabel": "<string>",
    "year": 123,
    "monthYear": "<string>"
  }
]

Authorizations

Authorization
string
header
required

JWT access token from POST /v1/api/auth/login

Query Parameters

startDate
string<date>
endDate
string<date>

Response

Income transactions retrieved successfully

id
integer<int64>
type
enum<string>
Available options:
INCOMING,
OUTGOING,
COMMISSION,
REFUND,
WALLET_CREDIT,
WALLET_DEBIT,
FEES_STRIPE
typeLabel
string
amount
number
currency
string
formattedAmount
string
transactionDate
string<date-time>
formattedDate
string
routeFrom
string
routeTo
string
formattedRoute
string
travelDate
string<date-time>
formattedTravelDate
string
otherPartyName
string
reservationNumber
string
status
enum<string>
Available options:
PENDING,
COMPLETED,
CANCELED,
REFUNDED,
FAILED
statusLabel
string
year
integer<int32>
monthYear
string