RoscoLive API v1.0(v2.35.0)
  1. Fleet Configuration
RoscoLive API v1.0(v2.35.0)
  • Event
    • Request custom video from device
      PUT
  • Company
    • create a company
      PUT
    • get a company by ID
      GET
    • update a company by ID
      POST
    • update company
      POST
    • get a company
      GET
    • get companies
      GET
    • get own partner company
      GET
  • Device
    • Geotab
      • Pair cameras to GO devices by CSV file
    • Play in-cab audible alert sound for device
      POST
    • Get a device
      GET
  • External Service
    • Get an external service account
      GET
    • Pair RL device with external device
      PUT
    • Get RL device data via external device unique serial number
      GET
  • Fleet Configuration
    • Create new profile in a company
      POST
    • Update a company profile
      POST
    • Get a company profile
      GET
    • Get profiles of a company
      GET
    • get profile history
      GET
  1. Fleet Configuration

Update a company profile

POST
https://fleet.roscolive.com/api/v1.0/partners/companies/{company_name}/profiles/{profile_id}
Endpoint to update a company profile.
At least one parameter must be passed in form-data params.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://fleet.roscolive.com/api/v1.0/partners/companies//profiles/' \
--form 'name=""' \
--form 'configuration=""' \
--form 'configurationdv6=""' \
--form 'comments=""' \
--form 'preferred=""' \
--form 'advanced_quality_channels=""'
Response Response Example
200 - Example 1
{
    "meta": {
        "code": 200
    },
    "response": {
        "profile": {
            "advanced_quality_channels": true,
            "comments": "Test comments",
            "configuration": "{\"key1\": \"value1\", \"key2\": [\"value21\", \"value22\"]}",
            "configurationdv6": "{\"key1\": \"value1\", \"key2\": [\"value21\", \"value22\"]}",
            "created_at": "Wed, 26 Mar 2025 17:13:59 GMT",
            "id": 14721,
            "last_changed_ts": "Wed, 26 Mar 2025 17:17:12 GMT",
            "name": "api_test_profile_name_1234",
            "preferred": false
        }
    },
    "result": "OK"
}

Request

Path Params

Body Params multipart/form-data

Responses

🟢200Success
application/json
Body

🔴500Internal Server Error
🟠404Resource Not Found
🟠401Login Required
Modified at 2025-03-26 17:44:47
Previous
Create new profile in a company
Next
Get a company profile
Built with