Skip to main content
GET
/
accounting
/
transactions
/
monthly
Get Monthly Transactions
curl --request GET \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/accounting/transactions/monthly \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "month": "<string>",
      "year": 123,
      "totalAmount": 123,
      "transactionCount": 123
    }
  ]
}
Get Monthly Transactions Retrieve transaction data aggregated by month for analysis and reporting. Method: GET Query Parameters:
ParameterTypeDescription
yearintegerFilter by specific year
monthintegerFilter by specific month (1-12)
pageintegerPage number for pagination
sizeintegerNumber of items per page

Authentication

This endpoint requires authentication. Include your bearer token in the Authorization header.

Query Parameters

ParameterTypeInRequiredDescription
yearintegerqueryāŒFilter by year
monthintegerqueryāŒFilter by month (1-12)
pageintegerqueryāŒPage number
sizeintegerqueryāŒItems per page

Responses

āœ… 200 - Monthly transactions retrieved successfully

āš ļø 401 - Unauthorized

āŒ 500 - Internal Server Error

Tags

Accounting

Authorizations

Authorization
string
header
required

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

Query Parameters

year
integer

Filter by year

month
integer

Filter by month (1-12)

Required range: 1 <= x <= 12
page
integer
default:1

Page number

size
integer
default:10

Items per page

Response

Monthly transactions retrieved successfully

success
boolean
data
object[]
⌘I