Get all usage summary tasks
GET/platform/solutions/api/v1/reports/usage-jobs
This API retrieves information about all tasks, including schedule IDs and detailed settings.
You can use skipCount to control the starting point of the returned results.
Use maxResultCount to limit the number of results returned.
200 Response
[
{
usageJobId: 5d57a58d-a530-45cf-9e20-8e2b5bd4344d,
repeatPeriod: Daily,
endTime: 20251231,
timeZone: +08:30,
jobs: [
ActiveDeviceCount,
DataPointCount
]
},
{
usageJobId: 20dfc212-a7d8-4487-9dd2-5bbcea04f4a5,
repeatPeriod: Daily,
endTime: 20251231,
timeZone: +08:30,
jobs: [
ActiveDeviceCount,
DataPointCount
]
}
]
500 Response
{
message: maxResultCount must be greater than zero.
}
{
message: skipCount must be greater than zero.
}
{
message: maxResultCount must be greater than skipCount.
}
Request
Responses
- 200
OK