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
company_name
string 
required
Name of a company
profile_id
integer 
required
ID of company profile
Body Params multipart/form-data
name
string 
optional
configuration
string <json>
optional
configurationdv6
string <json>
optional
comments
string 
optional
>= 0 characters<= 2048 characters
preferred
boolean 
optional
advanced_quality_channels
boolean 
optional
In case of update an exists company profile without advanced_quality_channels parameter, this field will be skipped

Responses

🟢200Success
application/json
Body
meta
object 
required
Request metadata object
code
integer 
required
HTTP status code returned by response
response
object 
required
Contains response data
profile
object (Profile) 
required
Profile object of updated profile
result
string 
required
"OK" if successful, else "Failed" if error
🔴500Internal Server Error
🟠404Resource Not Found
🟠401Login Required
Previous
Create new profile in a company
Next
Get a company profile
Built with