Retrieves a revenue waterfall report.
Use revenue waterfall reports to view revenue that is recognized up to a given month. Revenue waterfall reports contain information on booked revenue, recognized revenue for the months in the issued period, and the remaining revenue up to the specified month.
Report retrieved.
Unauthorized access. Invalid credentials used.
Access forbidden.
const report = await api.reports.getRevenueWaterfall({ issuedFrom: '2016-09', issuedTo: '2017-09', recognizedTo: '2017-09', limit: 20, offset: 0, tz: 0 });
[- {
- "issuedMonth": "2022-02",
- "booked": 25,
- "recognized": 20,
- "remaining": 5,
- "waterfall": [
- {
- "recognizedMonth": "2022-02",
- "amount": 4.4
}, - {
- "recognizedMonth": "2022-03",
- "amount": 8.33
}, - {
- "recognizedMonth": "2022-04",
- "amount": 7.27
}
]
}
]