1. Device Firmware
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
  • User
    • Update notification by email
    • Get event / sms notification settings
  1. Device Firmware

get list of latest firmware versions

GET
/firmware/last/versions
Returns a list of latest firmware versions for device types. NOTE: Only Partners with valid permissions can successfully call this endpoint.

Request

None

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/firmware/last/versions'
Response Response Example
200 - Success
{
    "meta": {
        "code": 200
    },
    "response": [
        {
            "id": 200,
            "type": "dv4_camera",
            "version": "dvxc4_v1.9.3.fw",
            "version_num": 1009003
        },
        {
            "id": 168,
            "type": "dv4_pdc",
            "version": "aprom_dvxc4_v1.9.1.bin",
            "version_num": 1009001
        },
        {
            "id": 124,
            "type": "dv4_uboot",
            "version": "uboot_dvxc4_v1.0.2.bin",
            "version_num": 1000002
        },
        {
            "id": 295,
            "type": "dv6_camera",
            "version": "dv6_v2.6.0.fw",
            "version_num": 2006000
        },
        {
            "id": 135,
            "type": "dv6_mcu",
            "version": "dv6_v79.mcu",
            "version_num": 1000079
        }
    ],
    "result": "OK"
}
Modified at 2024-07-25 02:10:21
Previous
get available firmware versions
Next
push firmware to device
Built with