Automile ResourceOwnerTrackedAsset API

The ResourceOwnerTrackedAsset API from Automile — 14 operation(s) for resourceownertrackedasset.

Business capability
Fleet Telematics and Monitoring BC-2430.40

Operations 16

GET /v1/resourceowner/trackedasset List all tracked assets that the user has access to #
GET /v1/resourceowner/trackedasset/{trackedAssetId} Get a tracked asset #
PUT /v1/resourceowner/trackedasset/{trackedAssetId} Update a tracked asset #
PUT /v1/resourceowner/trackedasset/{trackedAssetId}/sleep Put a tracked asset to sleep #
PUT /v1/resourceowner/trackedasset/{trackedAssetId}/track Start tracking a asset #
PUT /v1/resourceowner/trackedasset/{trackedAssetId}/shutdown Shutdown a device that is tracking a asset #
GET /v1/resourceowner/trackedasset/{trackedAssetId}/history List tracked asset history #
GET /v1/resourceowner/trackedasset/{trackedAssetId}/externaldevices List external devices by asset #
GET /v1/resourceowner/trackedasset/externaldevices List external devices #
GET /v1/resourceowner/trackedasset/externaldevice/{externalDeviceId} External device #
PUT /v1/resourceowner/trackedasset/externaldevice/{externalDeviceId} Update an external device asset #
GET /v1/resourceowner/trackedasset/externaldevice/{externalDeviceId}/history List external device history #
GET /v1/resourceowner/trackedasset/externaldevices/updateintervals List available update intervals in seconds #
GET /v1/resourceowner/trackedasset/sleepinterval Lists available sleep intervals in minutes #
GET /v1/resourceowner/trackedasset/updateinterval Lists available update intervals in seconds #
GET /v1/resourceowner/trackedasset/enum List all enumerations used on this endpoint #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/automile-resourceownertrackedasset-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

automile-resourceownertrackedasset-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Automile ClientApi Resource Owner Tracked Asset API
  version: v1
servers:
- url: https://api.automile.com/
tags:
- name: ResourceOwnerTrackedAsset
paths:
  /v1/resourceowner/trackedasset:
    get:
      tags:
      - ResourceOwnerTrackedAsset
      summary: List all tracked assets that the user has access to
      description: Only returns tracked assets that the user have access to
      operationId: TrackedAsset_GetTrackedAssetList
      parameters:
      - in: query
        name: filterAssetType
        description: "The asset type to list (All types = null, Vehicle = 0, Trailer = 1, ATV = 2, \n            Boat = 3, Excavator = 4, Cargo = 5). Default is all types."
        schema:
          type: integer
          format: int32
          enum:
          - 0
          - 1
          - 2
          - 3
          - 4
          - 5
          - 6
          - 255
      responses:
        '200':
          description: The tracked assets are returned
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TrackedAssetModelGet'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TrackedAssetModelGet'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TrackedAssetModelGet'
        '500':
          description: Internal server error
      security:
      - oauth2: []
  /v1/resourceowner/trackedasset/{trackedAssetId}:
    get:
      tags:
      - ResourceOwnerTrackedAsset
      summary: Get a tracked asset
      operationId: TrackedAsset_GetTrackedAsset
      parameters:
      - in: path
        name: trackedAssetId
        description: The tracked asset id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The tracked asset is returned
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/TrackedAssetModelGet'
            application/json:
              schema:
                $ref: '#/components/schemas/TrackedAssetModelGet'
            text/json:
              schema:
                $ref: '#/components/schemas/TrackedAssetModelGet'
        '500':
          description: Internal server error
      security:
      - oauth2: []
    put:
      tags:
      - ResourceOwnerTrackedAsset
      summary: Update a tracked asset
      operationId: TrackedAsset_UpdateTrackedAsset
      parameters:
      - in: path
        name: trackedAssetId
        description: The tracked asset id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Successfully updated
        '500':
          description: Internal server error
      security:
      - oauth2: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TrackedAssetModelEdit'
          text/json:
            schema:
              $ref: '#/components/schemas/TrackedAssetModelEdit'
          application/*+json:
            schema:
              $ref: '#/components/schemas/TrackedAssetModelEdit'
        description: Tracked asset model
  /v1/resourceowner/trackedasset/{trackedAssetId}/sleep:
    put:
      tags:
      - ResourceOwnerTrackedAsset
      summary: Put a tracked asset to  sleep
      operationId: TrackedAsset_SleepAsset
      parameters:
      - in: path
        name: trackedAssetId
        description: The tracked asset id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Successfully put to sleep
        '500':
          description: Internal server error
      security:
      - oauth2: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TrackedAssetSleepConfigurationModelPUT'
          text/json:
            schema:
              $ref: '#/components/schemas/TrackedAssetSleepConfigurationModelPUT'
          application/*+json:
            schema:
              $ref: '#/components/schemas/TrackedAssetSleepConfigurationModelPUT'
        description: Model describing sleep configuration
  /v1/resourceowner/trackedasset/{trackedAssetId}/track:
    put:
      tags:
      - ResourceOwnerTrackedAsset
      summary: Start tracking a asset
      operationId: TrackedAsset_TrackAsset
      parameters:
      - in: path
        name: trackedAssetId
        description: The tracked asset id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Successfully started tracking
        '500':
          description: Internal server error
      security:
      - oauth2: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TrackedAssetTrackConfigurationModelPUT'
          text/json:
            schema:
              $ref: '#/components/schemas/TrackedAssetTrackConfigurationModelPUT'
          application/*+json:
            schema:
              $ref: '#/components/schemas/TrackedAssetTrackConfigurationModelPUT'
        description: Model describing tracking configuration
  /v1/resourceowner/trackedasset/{trackedAssetId}/shutdown:
    put:
      tags:
      - ResourceOwnerTrackedAsset
      summary: Shutdown a device that is tracking a asset
      operationId: TrackedAsset_Shutdown
      parameters:
      - in: path
        name: trackedAssetId
        description: The tracked asset id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Successfully shut down device
        '500':
          description: Internal server error
      security:
      - oauth2: []
  /v1/resourceowner/trackedasset/{trackedAssetId}/history:
    get:
      tags:
      - ResourceOwnerTrackedAsset
      summary: List tracked asset history
      operationId: TrackedAsset_ListHistory
      parameters:
      - in: path
        name: trackedAssetId
        description: Id of tracked asset
        required: true
        schema:
          type: integer
          format: int32
      - in: query
        name: lastNumberOfDays
        description: Last number of days to get trips for (default = 60)
        schema:
          type: integer
          format: int32
          default: 10
      - in: query
        name: historyType
        description: "Bitmask to filter and only list specific history types. 1 = Move Alert, 2 = Temperature, \n            4 = Battery Alert, 8 = Heartbeat, 16 = Battery Level, 32 = External Power Voltage, 64 = Operating Time, 128 = Shutdown Pending, 256 = Shutdown, 512 = Offline, 1024 = Humidity (default = all types) \n            [Example: 7 = Move alert, temperature and battery alerts]"
        schema:
          type: integer
          format: int32
          enum:
          - 0
          - 1
          - 2
          - 4
          - 8
          - 16
          - 32
          - 64
          - 128
          - 256
          - 512
          - 1024
      responses:
        '200':
          description: The history list returned
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TrackedAssetHistoryModelGET'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TrackedAssetHistoryModelGET'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TrackedAssetHistoryModelGET'
        '500':
          description: Internal server error
      security:
      - oauth2: []
  /v1/resourceowner/trackedasset/{trackedAssetId}/externaldevices:
    get:
      tags:
      - ResourceOwnerTrackedAsset
      summary: List external devices by asset
      operationId: GetExternalDeviceListByAsset
      parameters:
      - in: path
        name: trackedAssetId
        description: Id of tracked asset
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The external device list is returned
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExternalDeviceModelGET'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExternalDeviceModelGET'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExternalDeviceModelGET'
        '500':
          description: Internal server error
      security:
      - oauth2: []
  /v1/resourceowner/trackedasset/externaldevices:
    get:
      tags:
      - ResourceOwnerTrackedAsset
      summary: List external devices
      operationId: GetExternalDeviceList
      responses:
        '200':
          description: The external device list is returned
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExternalDeviceModelGET'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExternalDeviceModelGET'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExternalDeviceModelGET'
        '500':
          description: Internal server error
      security:
      - oauth2: []
  /v1/resourceowner/trackedasset/externaldevice/{externalDeviceId}:
    get:
      tags:
      - ResourceOwnerTrackedAsset
      summary: External device
      operationId: GetExternalDevice
      parameters:
      - in: path
        name: externalDeviceId
        description: Id of external device
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The external device is returned
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExternalDeviceModelGET'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExternalDeviceModelGET'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExternalDeviceModelGET'
        '500':
          description: Internal server error
      security:
      - oauth2: []
    put:
      tags:
      - ResourceOwnerTrackedAsset
      summary: Update an external device asset
      operationId: UpdateExternalDevice
      parameters:
      - in: path
        name: externalDeviceId
        description: The external device id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Successfully updated
        '500':
          description: Internal server error
      security:
      - oauth2: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExternalDeviceModelPUT'
          text/json:
            schema:
              $ref: '#/components/schemas/ExternalDeviceModelPUT'
          application/*+json:
            schema:
              $ref: '#/components/schemas/ExternalDeviceModelPUT'
        description: External device model
  /v1/resourceowner/trackedasset/externaldevice/{externalDeviceId}/history:
    get:
      tags:
      - ResourceOwnerTrackedAsset
      summary: List external device history
      operationId: GetExternalDeviceHistoryList
      parameters:
      - in: path
        name: externalDeviceId
        description: Id of tracked asset
        required: true
        schema:
          type: integer
          format: int32
      - in: query
        name: lastNumberOfDays
        description: Last number of days to get history for (default = 10)
        schema:
          type: integer
          format: int32
          default: 10
      - in: query
        name: groupHistory
        description: Group history items on the same day into one item (default = false)
        schema:
          type: boolean
          default: false
      responses:
        '200':
          description: The history list returned
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExternalDeviceHistoryModelGET'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExternalDeviceHistoryModelGET'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExternalDeviceHistoryModelGET'
        '500':
          description: Internal server error
      security:
      - oauth2: []
  /v1/resourceowner/trackedasset/externaldevices/updateintervals:
    get:
      tags:
      - ResourceOwnerTrackedAsset
      summary: List available update intervals in seconds
      operationId: GetAvailableUpdateIntervalList
      responses:
        '200':
          description: The update interval list is returned
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExternalDeviceUpdateIntervalModelGET'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExternalDeviceUpdateIntervalModelGET'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExternalDeviceUpdateIntervalModelGET'
        '500':
          description: Internal server error
      security:
      - oauth2: []
  /v1/resourceowner/trackedasset/sleepinterval:
    get:
      tags:
      - ResourceOwnerTrackedAsset
      summary: Lists available sleep intervals in minutes
      operationId: TrackedAsset_GetAvailableSleepIntervalList
      responses:
        '200':
          description: The sleep intervals in minutes
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/TrackedAssetSleepIntervalModelGET'
            application/json:
              schema:
                $ref: '#/components/schemas/TrackedAssetSleepIntervalModelGET'
            text/json:
              schema:
                $ref: '#/components/schemas/TrackedAssetSleepIntervalModelGET'
        '500':
          description: Internal server error
      security:
      - oauth2: []
  /v1/resourceowner/trackedasset/updateinterval:
    get:
      tags:
      - ResourceOwnerTrackedAsset
      summary: Lists available update intervals in seconds
      operationId: TrackedAsset_GetAvailableAssetUpdateIntervalList
      responses:
        '200':
          description: The sleep intervals in minutes
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/TrackedAssetUpdateIntervalModelGET'
            application/json:
              schema:
                $ref: '#/components/schemas/TrackedAssetUpdateIntervalModelGET'
            text/json:
              schema:
                $ref: '#/components/schemas/TrackedAssetUpdateIntervalModelGET'
        '500':
          description: Internal server error
      security:
      - oauth2: []
  /v1/resourceowner/trackedasset/enum:
    get:
      tags:
      - ResourceOwnerTrackedAsset
      summary: List all enumerations used on this endpoint
      operationId: TrackedAsset_GetEnumList
      responses:
        '200':
          description: The notifications are returned
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/EnumTypeModelGET'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/EnumTypeModelGET'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/EnumTypeModelGET'
        '500':
          description: Internal server error
      security:
      - oauth2: []
components:
  schemas:
    EnumTypeModelGET:
      type: object
      properties:
        EnumValueList:
          type: object
          additionalProperties:
            format: int32
            type: integer
      additionalProperties: false
    PositionPointModel:
      type: object
      properties:
        Longitude:
          format: double
          type: number
        Latitude:
          format: double
          type: number
      additionalProperties: false
    AssetCommandModel:
      type: object
      properties:
        Command:
          format: int32
          enum:
          - 1
          - 2
          - 3
          type: integer
        Endpoint:
          type: string
        AvailableUntil:
          format: date-time
          type: string
        TrackingIntervalList:
          type: array
          items:
            format: int32
            type: integer
      additionalProperties: false
    TrackedAssetSleepIntervalModelGET:
      type: object
      properties:
        SleepIntervalList:
          type: array
          items:
            format: int32
            type: integer
      additionalProperties: false
    PropertyModel:
      type: object
      properties:
        PropertyType:
          format: int32
          enum:
          - 0
          - 1
          - 2
          - 3
          - 5
          - 6
          - 7
          - 8
          - 9
          - 10
          - 11
          - 12
          - 13
          - 14
          - 15
          - 16
          type: integer
        PropertyName:
          type: string
        ValueType:
          type: string
        Value:
          type: string
        Unit:
          type: string
      additionalProperties: false
    TrackedAssetTrackConfigurationModelPUT:
      required:
      - MinutesToTrack
      type: object
      properties:
        MinutesToTrack:
          format: int32
          type: integer
        OriginalTriggerMessageHistoryId:
          format: int32
          type: integer
      additionalProperties: false
    ExternalDeviceModelGET:
      type: object
      properties:
        ExternalDeviceId:
          format: int32
          type: integer
        Name:
          type: string
        ExternalDeviceType:
          format: int32
          enum:
          - 0
          - 1
          type: integer
          readOnly: true
        SerialNumber:
          type: string
          readOnly: true
        TrackedAssetId:
          format: int32
          type: integer
          readOnly: true
        TrackerName:
          type: string
          readOnly: true
        UpdateIntervalInSeconds:
          format: int32
          type: integer
          readOnly: true
        UpdatedAtUtc:
          format: date-time
          type: string
          readOnly: true
        PropertyList:
          type: array
          items:
            $ref: '#/components/schemas/PropertyModel'
        IsConnected:
          type: boolean
          readOnly: true
      additionalProperties: false
    ExternalDeviceUpdateIntervalModelGET:
      type: object
      properties:
        UpdateIntervalInSecondsList:
          type: array
          items:
            format: int32
            type: integer
      additionalProperties: false
    TrackedAssetModelEdit:
      required:
      - AssetType
      type: object
      properties:
        Name:
          type: string
        ImageUrl:
          type: string
        DefaultSleepTimeInMinutes:
          format: int32
          type: integer
        AssetType:
          format: int32
          enum:
          - 0
          - 1
          - 2
          - 3
          - 4
          - 5
          - 6
          - 255
          type: integer
        UpdateIntervalInSeconds:
          format: int32
          type: integer
        IsBluetoothDiscoverable:
          type: boolean
        IsRegistrationModeOn:
          type: boolean
      additionalProperties: false
    TrackedAssetUpdateIntervalModelGET:
      type: object
      properties:
        UpdateIntervalInSecondsList:
          type: array
          items:
            format: int32
            type: integer
      additionalProperties: false
    TrackedAssetHistoryModelGET:
      type: object
      properties:
        TrackedAssetHistoryId:
          format: int32
          type: integer
        OccuredAt:
          format: date-time
          type: string
        HistoryType:
          format: int32
          enum:
          - 0
          - 1
          - 2
          - 3
          - 4
          - 5
          - 6
          - 7
          - 8
          - 9
          - 10
          type: integer
        Position:
          $ref: '#/components/schemas/PositionPointModel'
        IsNew:
          type: boolean
        PropertyList:
          type: array
          items:
            $ref: '#/components/schemas/PropertyModel'
      additionalProperties: false
    ExternalDeviceHistoryGroupModelGET:
      type: object
      properties:
        OccuredAtUtc:
          format: date-time
          type: string
        Value:
          type: string
      additionalProperties: false
    TrackedAssetModelGet:
      required:
      - AssetType
      type: object
      properties:
        Name:
          type: string
        ImageUrl:
          type: string
        DefaultSleepTimeInMinutes:
          format: int32
          type: integer
        AssetType:
          format: int32
          enum:
          - 0
          - 1
          - 2
          - 3
          - 4
          - 5
          - 6
          - 255
          type: integer
        UpdateIntervalInSeconds:
          format: int32
          type: integer
        IsBluetoothDiscoverable:
          type: boolean
        IsRegistrationModeOn:
          type: boolean
        TrackedAssetId:
          format: int32
          type: integer
        IMEIDeviceType:
          format: int32
          enum:
          - 0
          - 1
          - 2
          - 3
          - 4
          - 5
          - 6
          - 7
          - 8
          - 9
          - 255
          type: integer
        IMEI:
          type: string
        IMEIConfigId:
          format: int32
          type: integer
        Status:
          format: int32
          enum:
          - 0
          - 1
          - 2
          - 3
          - 4
          - 5
          type: integer
        LastLocation:
          $ref: '#/components/schemas/PositionPointModel'
        LastLocationTimestamp:
          format: date-time
          type: string
        LastContact:
          format: date-time
          type: string
        NumberOfUnreadNotifications:
          format: int32
          type: integer
        PropertyList:
          type: array
          items:
            $ref: '#/components/schemas/PropertyModel'
        AvailableCommandList:
          type: array
          items:
            $ref: '#/components/schemas/AssetCommandModel'
        LastKnownFormattedAddress:
          type: string
        IsEditable:
          type: boolean
        ExternalDevices:
          type: array
          items:
            $ref: '#/components/schemas/ExternalDeviceModelGET'
        MountedInCradle:
          type: boolean
      additionalProperties: false
    TrackedAssetSleepConfigurationModelPUT:
      required:
      - MinutesToSleep
      type: object
      properties:
        MinutesToSleep:
          format: int32
          type: integer
      additionalProperties: false
    ExternalDeviceModelPUT:
      type: object
      properties:
        ExternalDeviceId:
          format: int32
          type: integer
        Name:
          type: string
        UpdateIntervalInSeconds:
          format: int32
          type: integer
      additionalProperties: false
    ExternalDeviceHistoryModelGET:
      type: object
      properties:
        ExternalDeviceHistoryId:
          format: int32
          type: integer
        ExternalDeviceId:
          format: int32
          type: integer
        OccuredAtUtc:
          format: date-time
          type: string
        GroupList:
          type: array
          items:
            $ref: '#/components/schemas/ExternalDeviceHistoryGroupModelGET'
        HistoryType:
          format: int32
          enum:
          - 0
          - 1
          - 2
          - 3
          - 4
          - 5
          - 6
          - 7
          - 8
          - 9
          - 10
          type: integer
        Position:
          $ref: '#/components/schemas/PositionPointModel'
        PropertyList:
          type: array
          items:
            $ref: '#/components/schemas/PropertyModel'
        TrackedAssetId:
          format: int32
          type: integer
        TrackerName:
          type: string
          readOnly: true
      additionalProperties: false
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        implicit:
          scopes:
            read: Read access to protected resources
            write: Write access to protected resources
          authorizationUrl: https://api.automile.com/login/
      description: OAuth2 Implicit Grant