Automile ResourceOwnerIMEIEvent API

The ResourceOwnerIMEIEvent API from Automile — 4 operation(s) for resourceownerimeievent.

Business capability
Fleet Telematics and Monitoring BC-2430.40

Operations 4

GET /v1/resourceowner/imeievents Get a list of all IMEIEvents that user is associated with #
GET /v1/resourceowner/imeievents/mil/{imeiEventId} Gets MILIMEIevent for given imeiEventId #
GET /v1/resourceowner/imeievents/dtc/{imeiEventId} Gets DTCIMEIevent for given imeiEventId #
GET /v1/resourceowner/imeievents/status/{imeiEventId} Gets StatusIMEIevent for given imeiEventId #

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-resourceownerimeievent-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-resourceownerimeievent-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Automile ClientApi Resource Owner IMEI Event API
  version: v1
servers:
- url: https://api.automile.com/
tags:
- name: ResourceOwnerIMEIEvent
paths:
  /v1/resourceowner/imeievents:
    get:
      tags:
      - ResourceOwnerIMEIEvent
      summary: Get a list of all IMEIEvents that user is associated with
      description: Only IMEIEvents that the user is associated with will be returned by this operation.
      operationId: GetResourceOwnerImeiEvents
      responses:
        '200':
          description: The IMEIEvents are returned
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/IMEIEventModel'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/IMEIEventModel'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/IMEIEventModel'
        '500':
          description: Internal server error
      security:
      - oauth2: []
  /v1/resourceowner/imeievents/mil/{imeiEventId}:
    get:
      tags:
      - ResourceOwnerIMEIEvent
      summary: Gets MILIMEIevent for given imeiEventId
      description: The user only has access to IMEIEvents that it is associated with
      operationId: GetResourceOwnerMilEvent
      parameters:
      - in: path
        name: imeiEventId
        description: The id to IMEIevent
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The IMEIEventMILs are returned
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/IMEIEventMILModel'
            application/json:
              schema:
                $ref: '#/components/schemas/IMEIEventMILModel'
            text/json:
              schema:
                $ref: '#/components/schemas/IMEIEventMILModel'
        '500':
          description: Internal server error
        '400':
          description: Bad request, you are using the wrong URI to retrieve this EMEIEvent
        '403':
          description: '>Request is forbidden, this could occur if you are not associated with the IMEIEvent'
        '404':
          description: The IMEIEvent that you tried to get doesn't exist
      security:
      - oauth2: []
  /v1/resourceowner/imeievents/dtc/{imeiEventId}:
    get:
      tags:
      - ResourceOwnerIMEIEvent
      summary: Gets DTCIMEIevent for given imeiEventId
      description: The user only has access to IMEIEvents that it is associated with
      operationId: GetResourceOwnerDTCEvent
      parameters:
      - in: path
        name: imeiEventId
        description: The id to IMEIevent
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The DTCIMEIevents are returned
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/IMEIEventDTCModel'
            application/json:
              schema:
                $ref: '#/components/schemas/IMEIEventDTCModel'
            text/json:
              schema:
                $ref: '#/components/schemas/IMEIEventDTCModel'
        '500':
          description: Internal server error
        '400':
          description: Bad request, you are using the wrong URI to retrieve this EMEIEvent
        '403':
          description: '>Request is forbidden, this could occur if you are not associated with the IMEIEvent'
        '404':
          description: The IMEIEvent that you tried to get doesn't exist
      security:
      - oauth2: []
  /v1/resourceowner/imeievents/status/{imeiEventId}:
    get:
      tags:
      - ResourceOwnerIMEIEvent
      summary: Gets StatusIMEIevent for given imeiEventId
      description: The user only has access to IMEIEvents that it is associated with
      operationId: GetResourceOwnerStatusEvent
      parameters:
      - in: path
        name: imeiEventId
        description: The id to IMEIevent
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The StatusIMEIevents are returned
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/IMEIEventStatusModel'
            application/json:
              schema:
                $ref: '#/components/schemas/IMEIEventStatusModel'
            text/json:
              schema:
                $ref: '#/components/schemas/IMEIEventStatusModel'
        '500':
          description: Internal server error
        '400':
          description: Bad request, you are using the wrong URI to retrieve this EMEIEvent
        '403':
          description: '>Request is forbidden, this could occur if you are not associated with the IMEIEvent'
        '404':
          description: The IMEIEvent that you tried to get doesn't exist
      security:
      - oauth2: []
components:
  schemas:
    IMEIEventModel:
      type: object
      properties:
        IMEIEventId:
          format: int32
          type: integer
        IMEI:
          type: string
        EventType:
          type: string
        TimeStamp:
          format: date-time
          type: string
      additionalProperties: false
    IMEIEventDTCModel:
      type: object
      properties:
        Description:
          type: string
        TimeStamp:
          format: date-time
          type: string
        TimeZone:
          format: int32
          type: integer
        EventType:
          type: string
        PositionLongitude:
          format: double
          type: number
        PositionLatitude:
          format: double
          type: number
        PositionFormattedAddress:
          type: string
        CellTower:
          format: int32
          type: integer
        CellTowerTimeZone:
          format: int32
          type: integer
        VehicleIdentificationNumber:
          type: string
        IMEI:
          type: string
        DeviceSerialNumber:
          type: string
        Dtcs:
          type: array
          items:
            $ref: '#/components/schemas/DTC'
      additionalProperties: false
    IMEIEventStatusModel:
      type: object
      properties:
        Description:
          type: string
        TimeStamp:
          format: date-time
          type: string
        TimeZone:
          format: int32
          type: integer
        EventType:
          type: string
        PositionLongitude:
          format: double
          type: number
        PositionLatitude:
          format: double
          type: number
        PositionFormattedAddress:
          type: string
        CellTower:
          format: int32
          type: integer
        CellTowerTimeZone:
          format: int32
          type: integer
        VehicleIdentificationNumber:
          type: string
        IMEI:
          type: string
        DeviceSerialNumber:
          type: string
        Status:
          type: string
      additionalProperties: false
    DTC:
      type: object
      properties:
        DTCCode:
          type: string
        FaultLocation:
          type: string
        ProbableCause:
          type: string
      additionalProperties: false
    IMEIEventMILModel:
      type: object
      properties:
        Description:
          type: string
        TimeStamp:
          format: date-time
          type: string
        TimeZone:
          format: int32
          type: integer
        EventType:
          type: string
        PositionLongitude:
          format: double
          type: number
        PositionLatitude:
          format: double
          type: number
        PositionFormattedAddress:
          type: string
        CellTower:
          format: int32
          type: integer
        CellTowerTimeZone:
          format: int32
          type: integer
        VehicleIdentificationNumber:
          type: string
        IMEI:
          type: string
        DeviceSerialNumber:
          type: string
        MilStatus:
          type: boolean
        NumberOfDTCs:
          format: int32
          type: integer
        MILDistance:
          format: int32
          type: integer
        CLRDistance:
          format: int32
          type: integer
        TripDistance:
          format: int32
          type: integer
        MILTime:
          format: int32
          type: integer
        CLRTime:
          format: int32
          type: integer
        TripTime:
          format: int32
          type: integer
      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