1. User
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. User

Update a User's Info

POST
/partners/users/{user_email}
Update the user information for the User with email: user_email.
All the attributes are optional, only the posted attributes will be changed
"active" is where user is marked as removed, if acitve is false, user is accessible by email but not searchable and not in the users list.
A partner can not change the role of his own, but can assign fleet manager, group_manager, end_user role to a user.

Request

Path Params

Body Params multipart/form-data

Responses

🟢200valid update a user
application/json
Bodyapplication/json

🟠404update a non existing user
🟠401Login Required
🟠400Invalid `phone_number` parameter
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://fleet.roscolive.com/api/v1.0/partners/users/' \
--form 'last_name="{{lastname_changed}}"' \
--form 'first_name="{{firstname_changed}}"' \
--form 'roles="{{group_manager or end_user}}"' \
--form 'phone_number=""' \
--form 'alert_gsensor="{{true or false}}"' \
--form 'alert_critical_gsensor="{{true or false}}"' \
--form 'alert_speed="{{true or false}}"' \
--form 'alert_sensor="{{true or false}}"' \
--form 'alert_sd_error="{{true or false}}"' \
--form 'alert_unclean_shutdown="{{true or false}}"' \
--form 'alert_camera_failure="{{true or false}}"' \
--form 'active="{{true or false}}"' \
--form 'alert_dv_camera_failure="{{alert_dv_camera_failure}}"' \
--form 'alert_high_temperature="{{true or false}}"' \
--form 'speed_unit="{{mph or kph}}"' \
--form 'aggr_notific_interval="{{aggr_notific_interval}}"' \
--form 'alert_inactive_vehicles="{{true or false}}"' \
--form 'alert_summary="{{true or false}}"' \
--form 'flood_notification="{{true or false}}"' \
--form 'reformat_reminder="{{true or false}}"' \
--form 'alert_inactive_vehicles_time="{{1-5}}"' \
--form 'recording_status_notifs="{{true or false}}"' \
--form 'alert_camera_errors="{{true or false}}"' \
--form 'viewed_thank_you=""' \
--form 'alert_camera_alignment=""'
Response Response Example
200 - valid update a user
{
    "meta": {
        "code": 200
    },
    "response": {
        "user": {
            "active": bool,
            "aggr_notific_interval": int,
            "alert_camera_alignment": bool,
            "alert_camera_failure": bool,
            "alert_critical_gsensor": bool,
            "alert_dv_camera_failure": bool,
            "alert_high_temperature": bool,
            "alert_inactive_vehicles": bool,
            "alert_inactive_vehicles_time": none,
            "alert_sd_error": bool,
            "alert_sensor": bool,
            "alert_speed": bool,
            "alert_summary": bool,
            "audit_notification": bool,
            "company_audit_log": none,
            "company_data": dict,
            "company_driver_recognition": "str",
            "company_id": int,
            "company_name": "str",
            "company_reformat_reminder": int,
            "company_token": "str",
            "company_type": "str",
            "confirmed_at": bool,
            "created_timestamp": "str",
            "data_usage_notification": bool,
            "data_usage_notification_vehicle_limit": "str",
            "email": "str",
            "eula_was_viewed": bool,
            "event_breakdown": bool,
            "first_name": "str",
            "flood_notification": bool,
            "groups": list,
            "harshaccel": none,
            "harshbraking": none,
            "has_registered_sms": bool,
            "high_speeding": none,
            "id": int,
            "installer_company_name": none,
            "is_fake": bool,
            "last_login": "str",
            "last_name": "str",
            "low_speeding": none,
            "mecp_cert": bool,
            "moderate_speeding": none,
            "partner_company_name": "str",
            "phone_number": "str",
            "recent_activity": "str",
            "recording_status_notifs": bool,
            "reformat_last_notifs": none,
            "reformat_reminder": bool,
            "release_viewed": "str",
            "roles": list,
            "rosco_product_owned": none,
            "settings": dict,
            "severe_speeding": none,
            "speed_unit": "str",
            "status": "str",
            "unidentified_drivers": bool,
            "viewed_thank_you": bool,
            "work_submission_report": none
        }
    },
    "result": "OK"
}
Modified at 2026-06-24 12:37:27
Previous
Get User Info from Email Address
Next
Get my Own User Info
Built with