Skip to main content
POST
/
api
/
Reporting
/
RevenueTrend
My Billings Trend.
curl --request POST \
  --url https://api.example.com/api/Reporting/RevenueTrend \
  --header 'Content-Type: application/json' \
  --data '
{
  "reportPeriod": 1,
  "userFilterTypeID": 1,
  "userFilterID": "<string>",
  "dashboardId": 123
}
'
[
  {
    "date": "<string>",
    "total": 123,
    "target": 123,
    "stretch": 123
  }
]

Body

application/json
reportPeriod
enum<integer>
Available options:
1,
2,
3,
4,
5,
6
userFilterTypeID
enum<integer>
Available options:
1,
2,
3,
4,
5
userFilterID
string | null
dashboardId
integer<int32> | null

Response

200 - application/json

OK

date
string | null
total
number<double>
target
number<double>
stretch
number<double>