1. private
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
        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 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
    • Get company devices with modems
    • Get a device
    • Create devices (auto-prov/DV4/DV6/DV7)
  • Driver Scoring / Coaching
    • Get company drivers list
    • Get driver scores
    • Add new driver to company
    • Get company event score weights
    • Update company event score weights
  • 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. 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
🔴500Internal Server Error
🟠404Resource Not Found
🟠401Login Required
🟠400Invalid `company_phone_number` parameter
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,
            "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-05-07 15:45:56
Previous
Create custom report for user
Next
Update partner company info
Built with