1. private
RoscoLive API v1.0(v2.41.0)
  • Authentication
    • Login
      POST
    • Logout
      GET
  • Report
    • Get custom report data
      GET
    • Get paired GO device report
      GET
    • Update custom report
      POST
    • Create custom report for user
      PUT
  • Company
    • private
      • Create a new partner company
        PUT
      • Update partner company info
        POST
      • Get a partner company
        GET
      • Disable a customer company
        POST
      • Enable a customer company
        POST
      • Disable a partner company
        POST
      • Enable a partner company
        POST
    • Create a company
      PUT
    • Get a company by ID
      GET
    • Update company
      POST
    • Get a company
      GET
    • Get companies
      GET
    • Get own partner company
      GET
  • Remote Device Management
    • Get device config history
      GET
    • Get device config history file
      GET
  • Device
    • Search devices
      GET
    • Update a device settings
      POST
    • Get a device
      GET
    • Get list of company devices
      GET
    • Get device with driver ID
      GET
    • Create devices (auto-prov/DV4/DV6/DV7)
      PUT
    • Get devices for all companies available for user
      GET
    • Get device list for multiple companies
      GET
    • Get current activity status of devices
      GET
  • Driver Scoring / Coaching
    • Get company event score weights
    • Update company event score weights
  • Event
    • Get Company Events
    • Get Latest Event for Each Device in Company
    • Share an event
    • Get a last updated event of devices
    • Get list of company events
  • External Service
    • BeWhere
      • Get BeWhere trackers by group
      • Add BeWhere tracker to group
      • Remove BeWhere tracker from group
      • Get list of BeWhere trackers for a company
      • Get available dates for a BeWhere tracker
      • Get metadata for a BeWhere tracker
  • Group
    • Get devices of a group
  • Metadata
    • Get alerts and events of devices for company
    • Get alerts of a device
  • Webhooks
    • Add Webhook Subscription to Multiple Event Types
    • Get Notification Subscriptions for Event Type
    • Set Notifications for Event Type
    • Remove Notification Subscription for Event Type
    • Get All Webhook Subscriptions for a Company
  • Installer App
    • Get user installed devices
  1. private

Create a new partner company

PUT
/{user_role}/partner/{new_company_name}
Creates a new partner company in RoscoLive. This endpoint is only accessible to system_admin and customer_support roles.

Request

Path Params

Body Params multipart/form-data

Responses

🟢201Success
application/json
Bodyapplication/json

🟠403Forbidden
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --globoff --request PUT 'https://fleet.roscolive.com/api/v1.0/system_admin/partner/{{$company.name}}' \
--form 'company_state="{{\$location.state}}"' \
--form 'company_zipcode="{{\$location.zipCode}}"' \
--form 'company_address="{{\$location.streetAddress}}"' \
--form 'company_country="{{\$location.country}}"' \
--form 'company_phone_number="1234567890"' \
--form 'company_address2=""' \
--form 'company_type="PARTNER"' \
--form 'data_limit=""' \
--form 'fleet_configuration=""'
Response Response Example
201 - Example 1
{
    "meta": {
        "code": 201
    },
    "response": {
        "company": {
            "active": true,
            "advanced_profile_settings": false,
            "allow_create_company": false,
            "allow_edit_company": false,
            "asset_deletion_protection": true,
            "bewhere_account_id": null,
            "billing_date": 25,
            "company_address": "Trees str",
            "company_city": "Detroit",
            "company_country": "USA",
            "company_key": null,
            "company_metadata": null,
            "company_name": "Test-partner",
            "company_phone_number": "123456789",
            "company_state": "Michigan",
            "company_type": "PARTNER",
            "company_zipcode": "213345",
            "created_by": 534,
            "created_by_company_id": 2,
            "custom_apn": "",
            "cutoff_when_overage": false,
            "data_threshold_pct": 1,
            "data_threshold_pct_global": 1,
            "data_threshold_type": "global",
            "dms_notifs_cutoff": null,
            "driver_recognition": "manual",
            "event_expiration": "180",
            "geofencing_active": false,
            "geotab_database": "",
            "geotab_path": "",
            "hash": "61a3610a9690afd3b36437eb7be0bd8e",
            "id": 9325,
            "industry_type": "other",
            "live_active": false,
            "override_overage_limits": false,
            "owner_company": "Rosco Vision",
            "partner_company": "Rosco Vision",
            "reformat_reminder": 4,
            "speedlimit_audio": false,
            "speedlimit_feature": false,
            "status": "used",
            "storage_active": false,
            "token": "38199366",
            "trace_active": false,
            "trial_status": false,
            "using_rosco_sim": true
        }
    },
    "result": "OK"
}
Modified at 2026-06-23 11:42:03
Previous
Create custom report for user
Next
Update partner company info
Built with