linxio-js

Endpoint Catalogue

Public and dashboard-derived Linxio endpoint families exposed by the SDK.

The SDK exposes a runtime linxioEndpoints catalogue:

import { linxioEndpoints } from "linxio-js";

console.log(linxioEndpoints.vehicles.list);

Each entry contains a method, path, and source marker:

  • public-docs means the endpoint appears on Linxio's public API page.
  • dashboard means the endpoint was inferred from the Linxio dashboard JavaScript bundles.

Run pnpm analyze:sources to compare this catalogue with endpoint candidates extracted from the dashboard bundles in sources/.

Public core

  • POST /login
  • GET /vehicles/fields/json
  • GET /vehicles/{vehicleId}/routes
  • GET /areas
  • POST /areas
  • DELETE /areas/{areaId}
  • GET /vehicles/{vehicleId}/odometer
  • POST /vehicles/{vehicleId}/odometer
  • POST /devices
  • PATCH /devices/{deviceId}
  • GET /devices/json
  • GET /devices/{deviceId}
  • POST /vehicles
  • POST /vehicles/{vehicleId}
  • GET /vehicles/{vehicleId}
  • POST /clients/{clientId}/users
  • POST /clients/{clientId}/users/{userId}
  • GET /clients/{clientId}/users
  • GET /clients/{clientId}/users/{userId}
  • POST /devices/{deviceId}/install
  • POST /devices/{deviceId}/uninstall
  • POST /vehicle/{vehicleId}/set-driver/{driverId}
  • POST /vehicle/{vehicleId}/unset-driver/{driverId}
  • sensor report endpoints
  • client driver user list

Dashboard-derived families

  • fuel cards and fuel reports
  • scheduled reports and scheduled-report lifecycle actions
  • digital forms
  • camera events
  • device coordinates, device history, device vendors, installation rows, and attached cameras
  • vehicle counts and vehicle types
  • read-only metadata, reference data, and tenant settings
  • users
  • resellers
  • area groups and area group lifecycle actions
  • notifications
  • settings

Prefer read-only verification before using dashboard-derived mutations in a live tenant.

On this page