Fetch revenue summary for a timeframe

This endpoint allows fetching the revenue summary for a given operator within a specified timeframe, broken down by payment methods and currency.

Securityjwt
Request
Request Body schema: application/json

Request body containing parameters for report generation

operatorId
integer <int64>
startDate
string <date>
endDate
string <date>
Responses
200

Revenue summary successfully retrieved

post/summary-report/revenue
Request samples
application/json

Revenue Summary Report Request

{
  • "operatorId": 12345,
  • "startDate": "2026-01-14",
  • "endDate": "2026-01-15"
}
Response samples
application/json
{
  • "transmissionDateTime": "2026-01-15T10:30:00",
  • "operatorId": 12345,
  • "startDate": "2026-01-01T00:00:00",
  • "endDate": "2026-01-07T23:59:59",
  • "revenue": [
    • {
      • "paymentType": "CARD",
      • "totalAmount": {
        • "amount": 1234.56,
        • "currency": "USD"
        }
      }
    ]
}