FleetUp API Docs
  1. Account & User & Device
FleetUp API Docs
  • Quick Start
    • Your First API Call
    • Token Expiration
    • Rate Limit
    • Error Codes
  • API Reference
    • Introduction
    • Authentication
      • /token
      • Obtain JWT Token
    • Account & User & Device
      • /account-info
        POST
      • /users
        GET
      • /drivers/list
        GET
      • /devices
        POST
      • /devices/status
        POST
      • /devices/unlock
        POST
      • /devices/driver-overview
        POST
      • /devices/engine-hours
        POST
      • /devices/fuel-level
        POST
      • /devices/odometer
        POST
      • /devices/latest-ecu-data
        POST
      • /devices/{device-id}
        PUT
      • /devices/{device-type}
        GET
      • /devices/{device-type}/details
        POST
      • /devices/{device-type}/history
        POST
    • Trips
      • /trips/history
      • /trips/ongoing-trips
    • Trip Share
      • /tripshare/live-eta
      • /tripshare/partners
      • /tripshare/share
    • Alerts
      • /alerts/summary
      • /alerts/history
      • /alerts/bulk-history
      • /fencealerts/fence-names
      • /fencealerts/geo-fencealerts
    • Location
      • Retrieve GPS data within a 24-hour time range
      • /gpsdata/device-last-location
      • /gpsdata/latest
      • /gpsdata/latest/4cj
      • /gpsdata/latest/5ta
      • /bulk-gpsdata
    • Maintenance
      • /maintenance/history
      • /maintenance/indicators
      • /maintenance/settings/indicators
      • /maintenance/settings/measurements
    • Reports
      • /reports/temperature-sensors
      • /reports/{report-key}
    • Geofence
      • Get all fences
      • Get fence detail
      • Retrieve geofence alerts
    • Others
      • /jobs
  • API Guides
    • Retrieve All Devices from an Enterprise
  1. Account & User & Device

/account-info

POST
/account-info
Get account specific information like companyName, country, language, timeZone, address, dataModel, usdotNo and rut for a given acctId

Request

Authorization
Add parameter in header
x-api-key
Example:
x-api-key: ********************
Header Params
token
string 
required
Body Params application/json
acctId
string 
required
Account ID
Example
{
    "acctId": "string"
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/account-info' \
--header 'token;' \
--header 'Content-Type: application/json' \
--header 'x-api-key;' \
--data-raw '{
    "acctId": "string"
}'

Responses

🟢200成功
application/json
200 response
Body
status
number 
optional
response status (http status)
data
object 
optional
acctId
integer 
optional
Account Id Ex: 1111
timeZone
string 
optional
Timezone Id Ex: GMT-05:00
Match pattern:
^GMT[-+]\d{2}:\d{2}$
country
string 
optional
Country code Ex: MX for Mexico. Possible values: CN,PE,TC,AX,CL,GT,UZ,AW,DZ,,AS,AE,AF,MX,VA,DE,US,AL,BR,GB,KR,TR,AU,IN,CA
language
integer 
optional
1:English,2:Spanish,3:Portuguese
>= 1<= 3
companyName
string 
optional
Company Name Ex: FleetUp Transportation Inc.
address
string 
optional
Address Ex: 520 E. Wilson Ave. Glendale, CA
dataModel
integer 
optional
1:US,2:EU
>= 1<= 2
usdotNo
string 
optional
Usdot Number
rut
string 
optional
Chile RUT number of the account
Example
{
    "status": 0,
    "data": {
        "acctId": 0,
        "timeZone": "string",
        "country": "string",
        "language": 1,
        "companyName": "string",
        "address": "string",
        "dataModel": 1,
        "usdotNo": "string",
        "rut": "string"
    }
}
Modified at 2025-02-28 08:12:14
Previous
Obtain JWT Token
Next
/users
Built with