RoscoLive API v1.0(v2.37.0)
  1. Company
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. Company

Update company

POST
/partners/companies/{company_name}
Update a company's information. All fields are optional and only passed in fields will be updated. NOTE: Only Partner companies with correct permission can update companies.

Request

Path Params

Body Params multipart/form-data

Responses

🟢200200
application/json
Body

🟠400400
🟠401Login Required
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/partners/companies/Acme Trucking Inc' \
--form 'company_city="{% faker address.cityName %}"' \
--form 'company_state="{% faker address.state %}"' \
--form 'company_zipcode="{% faker address.zipCode %}"' \
--form 'company_address="{% faker address.streetAddress %}"' \
--form 'company_country="{% faker address.country %}"' \
--form 'company_phone_number="5558675309"' \
--form 'company_new_name="{% faker company.name %}"' \
--form 'metadata="{\"foo\": \"bar}"' \
--form 'industry_type=""' \
--form 'speedlimit_feature=""' \
--form 'speedlimit_audio=""'
Response Response Example
200 - 200
{
    "meta": {
        "code": 200
    },
    "response": {
        "company": {
            "active": true,
            "advanced_profile_settings": false,
            "asset_deletion_protection": false,
            "billing_date": 7,
            "company_address": "Flowers str, 2",
            "company_address2": "Forest ave, 12",
            "company_city": "Detroit2",
            "company_country": "USA2",
            "company_key": "4f593eb722",
            "company_name": "TransfoTech",
            "company_phone_number": "12121212",
            "company_state": "Michigan2",
            "company_type": "CUSTOMER",
            "company_zipcode": "1121212",
            "created_by": 1,
            "created_by_company_id": 3,
            "custom_apn": "1234567",
            "data_limit": 3,
            "data_usage_threshold": 1024,
            "driver_recognition": "cardreader",
            "event_expiration": "180",
            "geotab_database": "",
            "geotab_email": "sasha.kyrylenko@gmail.com",
            "geotab_path": "",
            "hash": "ac6631660b966741a00cd20cd5014441",
            "id": 66,
            "live_active": true,
            "owner_company": "Rosco Vision Partner",
            "partner_company": "Rosco Vision Partner",
            "reformat_reminder": 0,
            "speedlimit_audio": true,
            "speedlimit_feature": true,
            "status": "used",
            "storage_active": true,
            "timezone": "US/Central",
            "token": "87443459",
            "trace_active": true,
            "trial_date": "Thu, 10 Oct 2019 12:01:20 GMT",
            "trial_status": true,
            "trial_subscribers": "end_user3@youpmail.com"
        }
    },
    "result": "OK"
}
Modified at 2025-10-08 17:16:45
Previous
Get a company by ID
Next
Get a company
Built with