1. Company
RoscoLive API v1.0(v2.40.0)
  • Report
    • Get custom report data
      GET
    • Get all events report for company
      GET
    • Get event count summary report for company devices
      GET
    • Update custom report
      POST
    • Create custom report for user
      PUT
  • Company
    • private
      • Create a new partner company
      • Update partner company info
      • Get a partner company
      • Disable a customer company
      • Enable a customer company
      • Disable a partner company
      • Enable a partner company
    • Create a company
      PUT
    • Get audit logs of a company
      GET
    • Get a company by ID
      GET
    • Update company
      POST
    • Get companies list
      GET
    • Get a company
      GET
    • Get companies
      GET
    • Get own partner company
      GET
  • User
    • Get Company Users
      GET
    • Get User Info from Email Address
      GET
    • Update a User's Info
      POST
    • Get my Own User Info
      GET
    • Create a User
      PUT
    • Update notification by email
      POST
  • Device
    • Update a device settings
      POST
    • Get company devices with modems
      GET
    • Get a device
      GET
    • Create devices (auto-prov/DV4/DV6/DV7)
      PUT
  • Driver Scoring / Coaching
    • Get company drivers list
      GET
    • Get driver scores
      GET
    • Add new driver to company
      PUT
    • Get company event score weights
      GET
    • Update company event score weights
      POST
  • Event
    • Get an Event of a Device by Start Time
    • Get an Event by ID and Storage Type
    • Get Company Events
    • Get Event by Company and ID
    • Get Flagged Company Events
    • Get Device Events for Period
    • Get list of company events
  • Metadata
    • Get alerts and events of devices for company
    • Get alerts of a driver
  • Fleet Configuration
    • Get profiles of a company
    • Get company default profile settings
    • Remove a company profile
    • Create new profile in a company
    • Get a company profile
    • Get profile history
    • Update a company profile
  • DocuWiki Support
    • Rosco customer registration
  • Installer App
    • Add install report
    • Installer registration
    • Install Rosco device
  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
Bodyapplication/json

🟠400400
🟠401Login Required
🟠400Invalid `company_phone_number` parameter
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://fleet.roscolive.com/api/v1.0/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=""' \
--form 'geofencing_active=""'
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",
            "geofencing_active": true,
            "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 2026-04-28 16:24:48
Previous
Get a company by ID
Next
Get companies list
Built with