Skip to main content
GET
/
public
/
v1
/
customer
/
{customerId}
/
asset
/
{assetId}
/
tire
/
pressure
/
history
Tire Pressure Events
curl --request GET \
  --url https://public-api.masternautconnect.com/public/v1/customer/{customerId}/asset/{assetId}/tire/pressure/history \
  --header 'Authorization: <api-key>'
{
  "pageIndex": 0,
  "pageSize": 25,
  "totalPages": 10,
  "totalCount": 250,
  "resultCount": 25,
  "hasNextPage": true,
  "data": {
    "asset": {
      "id": "<string>",
      "name": "<string>",
      "registration": "<string>",
      "formattedRegistration": "<string>",
      "vin": "<string>"
    },
    "events": [
      {
        "eventDate": "2023-11-07T05:31:56Z",
        "speedKph": 80,
        "tires": [
          {
            "position": {
              "axleNumber": 2,
              "tireCount": 4,
              "tireNumber": 2
            },
            "positionIdentifier": "<string>",
            "alertBattery": true,
            "alertPressure": 2,
            "alertTemp": true,
            "pressure": 800000,
            "status": "<string>",
            "temperature": 45,
            "normalizedPressure": 790000
          }
        ]
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Authorization header containing a Bearer token of the form Bearer [token], where [token] is a JWT used to authorize the request

Path Parameters

customerId
string
required
assetId
string
required

Identifier (alphanumeric) of a vehicle.

Query Parameters

startDate
string

Only events occurring on or after this date will be included in the response. If not provided, defaults to 30 days ago.

endDate
string

Only events occurring before this date will be included in the response. If not provided, defaults to the current date and time. The endDate must be after the startDate.

pageIndex
number

Specifies the pagination page index. Pages are zero indexed, i.e. the first page has an index value of zero.

Example:

1

pageSize
number

Specifies the number of items to include on a page. Must be specified if pageIndex has been specified.

Example:

50

Response

200 response

pageIndex
number

The current page index (zero-based).

Example:

0

pageSize
number

The number of items per page.

Example:

25

totalPages
number

The total number of pages available.

Example:

10

totalCount
number

The total number of items available.

Example:

250

resultCount
number

The number of items returned in the current response.

Example:

25

hasNextPage
boolean

Indicates if there is a next page available.

data
object