Assets

Retrieve an Asset

OAuth Scope

This endpoint requires the following OAuth scope read_assets.

get/asset/{uuid}.json

Path parameters

uuidstring uuid required

UUID of the Asset

Response

Asset record

uuidstring uuid

Unique identifier for this record

active0 | 1

Record active/deleted flag. Valid values are [0,1]

edit_datestring

Timestamp at which record was last modified

company_uuidstring uuid

UUID of the Client to which this Asset is attached

asset_codestring

The unique code printed on this Asset's attached label (read only)

asset_type_uuidstring uuid

UUID of an Asset Type which defines the fields that can be stored for this Asset (read only)

namestring

User-facing description of this asset

latnumber float

Latitude component of the Asset's location in degrees

lngnumber float

Longitude component of the Asset's location in degrees

geo_timestampstring

Timestamp at which the Asset's location was last updated

altitudenumber

Altitude component of the Asset's location in metres

Example response

{
  "uuid": "123e4567-4a93-406a-9c6c-230b7715c00b",
  "edit_date": "2025-07-01 12:00:00",
  "company_uuid": "123e4567-e99e-4028-8d5a-230b77c8387b",
  "asset_type_uuid": "123e4567-26fc-4f2b-935b-230b7446f9bb",
  "geo_timestamp": "2025-07-01 12:00:00"
}

Changes