1. Report
RoscoLive API v1.0
  • Company
    • Create a company
      PUT
    • Get a company by ID
      GET
    • Update company
      POST
    • Get a company
      GET
    • Get companies
      GET
    • get partner companies list
      GET
    • Get own partner company
      GET
  • Device
    • Get a device
      GET
    • Get list of company devices
      GET
  • Device Firmware
    • get available firmware versions
      GET
    • get list of latest firmware versions
      GET
    • push firmware to device
      POST
    • cancel pending firmware update to devices
      DELETE
    • get firmware updates history for company
      GET
  • Driver Scoring / Coaching
    • Get company drivers list
      GET
    • Add new driver to company
      PUT
  • Event
    • Get Company Events
      GET
    • Request videos of an event
      PUT
    • Get Latest Event for Each Device in Company
      GET
    • get geotab events
      GET
    • Get a last updated event of devices
      GET
    • update an event
      POST
  • Live streaming
    • start live streaming
      GET
  • Report
    • get list of companies with data usage for date range
      GET
  • User
    • Update notification by email
    • Get event / sms notification settings
  1. Report

get list of companies with data usage for date range

GET
/reports/data_tracking/companies
Returns a list of all available companies to the user with data usage information for that billing cycle.

Request

Query Params

Responses

🟢200Success
application/json
Bodyapplication/json

🔴500Internal Server Error
🟠404Resource Not Found
🟠401Login Required
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://fleet.roscolive.com/api/v1.0/reports/data_tracking/companies?start_date=20240101&end_date=20240130'
Response Response Example
200 - Success
{
    "meta": {
        "code": 200
    },
    "response": {
        "companies": [
            {
                "active_devices": 5,
                "available_data_pool": 5120,
                "company_id": 1234,
                "overage_cost": 0,
                "override_overage_limits": true,
                "partner_id": 1234,
                "partner_name": "Boyle and Sons",
                "token": "12345678",
                "total_data_usage": 1087
            }
        ]
    },
    "result": "OK"
}
Modified at 2026-05-19 11:27:25
Previous
start live streaming
Next
Update notification by email
Built with