GET
/
accounting
/
transactions
Get Transactions
curl --request GET \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/accounting/transactions \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {}
  ],
  "total": 123,
  "page": 123,
  "size": 123
}

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"

Query Parameters

q
string

Search query

page
integer
default:1

Page number

size
integer
default:10

Items per page

sort
string
default:createdAt

Sort field

order
enum<string>
default:desc

Sort order

Available options:
asc,
desc
type
string

Transaction type filter

status
string

Transaction status filter

Response

200
application/json

Transactions retrieved successfully

The response is of type object.