RoscoLive API v1.0(v2.37.0)
  1. Device
RoscoLive API v1.0(v2.37.0)
  • Company
    • Create a company
      PUT
    • Get a company by ID
      GET
    • Update company
      POST
    • Get a company
      GET
    • Get companies
      GET
  • Device
    • Geotab
      • Get device by geotab device serial number
    • Update a device settings
      POST
    • Get reported DTCs for devices
      GET
    • Get company devices
      GET
    • Search devices
      GET
    • Play in-cab audible alert sound for device
      POST
    • Get list of trip dates for device
      GET
    • Get list of trips for passed device and date
      GET
    • Get a device
      GET
    • Get devices for all companies available for user
      GET
    • Get available video list for date
      GET
    • Get device list for multiple companies
      GET
  • Driver Scoring / Coaching
    • Get driver scores
      GET
    • Get unknown driver trips
      GET
  • Event
    • Request Custom Event
      PUT
    • Get Company Events
      GET
    • Send an event
      PUT
    • Get snapshot/location of event
      GET
    • Get Device Events for Period
      GET
    • Request custom video from device
      PUT
    • Get event filters list for date range in company
      GET
  • Group
    • Get devices of a group
  • Metadata
    • Get metadata of a device
    • Get metadata of devices
    • Get alerts of a driver
  1. Device

Get company devices

Deprecated
GET
/partners/companies/{company_name}/devices
Get all devices in company company_name.
Results can be filtered by inputing a comma seperated string of the following fields :
device_id
vehicle_name
firmware
groups
users
page_number and page_size are optional to paginate the returned list

Request

Path Params

Query Params

Body Params multipart/form-data

Responses

🟢200valid get company devices (modem=none)
application/json
Body

🟢200valid get company devices (modem=true)
🟠404get company devices with none existing company
🟠400get company devices with invalid param
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/partners/companies//devices?fields=&page_number=&page_size=&modem=&version='
Response Response Example
200 - valid get company devices (modem=none)
{
    "meta": {
        "code": 200
    },
    "response": {
        "devices": [
            {
                "last_disconnected_ts": "str",
                "last_connected_ts": "str",
                "canbus": "str",
                "active": "bool",
                "activated_timestamp": "optional:none|datetime",
                "ads_online": "bool",
                "channel_available": "none|str",
                "created_at": "datetime",
                "data_limit": "none|int",
                "device_id": "str",
                "driver_recognition": "none|str",
                "driver_name": "optional:none|str",
                "driver_id": "optional:none|str",
                "device_type": "str",
                "firmware": "optional:str|none",
                "firmware_status": "str",
                "flood_blocked": "bool",
                "groups": "list",
                "installed_id": "none|int",
                "live_online": "bool",
                "matching_token": "optional:none|str",
                "online_gps": "bool",
                "parking_duration": "int",
                "status": "str",
                "pending_company_profile": "optional:none|str",
                "sd_format": "optional:none|dict",
                "timezone": "optional:none|str",
                "vehicle_icon": "str",
                "vehicle_name": "optional:none|str",
                "users": "optional:list",
                "config_checksum": "optional:none|int",
                "installed_by_user_id": "optional:int",
                "windshield_img": "optional:int",
                "vin_number": "optional:str",
                "power_img": "optional:int",
                "modem_img": "optional:int",
                "antenna_img": "optional:int",
                "tag_plate": "optional:none|str",
                "uploaded_company_profile": "optional:none|str"
            }
        ]
    }
}
Modified at 2025-11-03 19:26:44
Previous
Get reported DTCs for devices
Next
Search devices
Built with