RoscoLive API v1.0
  1. Company
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 a driver
      PUT
  • Event
    • Get company events
      GET
    • Request videos of an event
      PUT
    • get a last event of devices
      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. Company

get partner companies list

GET
/partner/companies/list
partnercompanylist
Returns a list of company objects related to the current user's partner with select data.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://fleet.roscolive.com/api/v1.0/partner/companies/list?include_data'
Response Response Example
200 - Success
{
    "meta": {
        "code": 200
    },
    "response": {
        "companies": [
            {
                "company_key": "f718695b37",
                "company_name": "Turcotte - Hoppe",
                "data_usage": null,
                "devices_count": 230,
                "id": 1234,
                "live_active": false,
                "profile_name": "Default",
                "trial_date": null,
                "trial_status": false
            },
            {
                "company_key": "f718695b37",
                "company_name": "Ryan and Sons",
                "data_usage": {
                    "available_data_pool": 235520,
                    "total_data_usage": 1897
                },
                "devices_count": 230,
                "id": 1234,
                "live_active": false,
                "profile_name": "Default",
                "trial_date": "2024-01-01 17:31:42",
                "trial_status": true
            },
            {
                "company_key": "f718695b37",
                "company_name": "Bergstrom Inc",
                "data_usage": {
                    "available_data_pool": 235520,
                    "total_data_usage": 1897
                },
                "devices_count": 230,
                "id": 1234,
                "live_active": false,
                "profile_name": "Default",
                "trial_date": null,
                "trial_status": false
            }
        ]
    },
    "result": "OK"
}

Request

Query Params
include_data
string 
optional
A comma-separated list of column names to include in the returned data. Possible values: data_usage

Responses

🟢200Success
application/json
Body
meta
object 
required
Request metadata object
code
integer 
required
HTTP status code returned by response
response
object 
required
Contains response data
companies
array [object {9}] 
required
result
string 
required
"OK" if successful, else "Fail" if error
🔴500Internal Server Error
🟠404Resource Not Found
🟠401Login Required
Modified at 2024-11-26 18:38:02
Previous
get companies
Next
get own partner company
Built with