1. Driver Scoring / Coaching
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. Driver Scoring / Coaching

Add new driver to company

PUT
/driver
Endpoint to add a new driver to the company with ID equal to company_id.

User Role Permissions#

The following table shows which user roles are allowed to send requests using this API endpoint.
RolePermission
Partner
Partner View
Custom Partner
Fleet Manager
Group Manager
User
Custom User

Request

Body Params multipart/form-data

Responses

๐ŸŸข200Success
application/json
Bodyapplication/json

๐ŸŸ 400Card ID exists
๐ŸŸ 401Login Required
๐ŸŸ 400Invalid `phone_number` parameter
๐ŸŸ 403Group not permitted
๐ŸŸ 404Group doesn't exist
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://fleet.roscolive.com/api/v1.0/driver' \
--form 'company_id="12345"' \
--form 'first_name="{% faker name.firstName %}"' \
--form 'last_name="{% faker name.lastName %}"' \
--form 'email="{% faker internet.exampleEmail %}"' \
--form 'card_id="A1B2C3D4"' \
--form 'group_id="12345"' \
--form 'guid=""' \
--form 'legal_consent=""' \
--form 'phone_number=""'
Response Response Example
200 - Success
{
    "meta": {
        "code": 200
    },
    "response": {
        "card_id": "a2b3c4d5",
        "card_scan_ts": null,
        "company_id": 2,
        "creation_ts": "2024-08-09 18:17:37",
        "device_id": null,
        "driver_gallery_complete": false,
        "email": "Jeanette.Christiansen@example.org",
        "first_name": "Makayla",
        "group_id": null,
        "group_name": null,
        "guid": "410e8300-d18a-52b1-a716-427766220000a",
        "id": 2842,
        "last_consent_ts": "2025-11-12 14:18:13",
        "last_name": "Goldner",
        "legal_consent": true,
        "name": "Makayla Goldner",
        "parent_driver_id": null,
        "phone_number": "1234567890",
        "photos": [],
        "status": "used",
        "type": "manual"
    },
    "result": "OK"
}
Modified atย 2026-03-06 18:01:42
Previous
Get driver scores
Next
Get company event score weights
Built with