Automile ResourceOwnerReports3 API

The ResourceOwnerReports3 API from Automile — 6 operation(s) for resourceownerreports3.

Business capability
Fleet Utilisation and Performance Management BC-2430.60

Operations 6

GET /v1/resourceowner/reports3/tripsummary/{dateperiod} Get a trip summary report #
GET /v1/resourceowner/reports3/tripsummary/{dateperiod}/{vehicleId} Get a trip summary report filtered by vehicle #
GET /v1/resourceowner/reports3/vehiclesummary/{dateperiod}/{vehicleId} Get a vehicle summary report #
GET /v1/resourceowner/reports3/vehiclessummary/{dateperiod} Get vehicles summary report #
POST /v1/resourceowner/reports3/emailtripreport Email a trip journal report to a desired email address #
GET /v1/resourceowner/reports3/geofencelog #

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-resourceownerreports3-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-resourceownerreports3-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Automile ClientApi Resource Owner Reports3 API
  version: v1
servers:
- url: https://api.automile.com/
tags:
- name: ResourceOwnerReports3
paths:
  /v1/resourceowner/reports3/tripsummary/{dateperiod}:
    get:
      tags:
      - ResourceOwnerReports3
      summary: Get a trip summary report
      description: Only vehicles that the user is associated with will be returned by this operation. 400 bad request is returend if the date period parameter is not in a correct format
      operationId: GetTripSummaryReport3
      parameters:
      - in: path
        name: dateperiod
        description: Date period parameter, in the form of only year (2014), year and month (201401), or interval {201301-201401}
        required: true
        schema:
          type: string
      responses:
        '200':
          description: The trip summary report are returned
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TripSummaryReportModel'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TripSummaryReportModel'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TripSummaryReportModel'
        '500':
          description: Internal server error
        '400':
          description: Bad request, date period is not in a correct format
      security:
      - oauth2: []
  /v1/resourceowner/reports3/tripsummary/{dateperiod}/{vehicleId}:
    get:
      tags:
      - ResourceOwnerReports3
      summary: Get a trip summary report filtered by vehicle
      description: Only vehicles that the user is associated with will be returned by this operation. 400 bad request is returend if the date period parameter is not in a correct format
      operationId: GetTripSummaryReporByVehicleId3
      parameters:
      - in: path
        name: dateperiod
        description: Date period parameter, in the form of only year (2014), year and month (201401), or interval {201301-201401}
        required: true
        schema:
          type: string
      - in: path
        name: vehicleId
        description: Report will be filtered on vehicle Id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The trip summary report are returned
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TripSummaryReportModel'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TripSummaryReportModel'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TripSummaryReportModel'
        '500':
          description: Internal server error
        '400':
          description: Bad request, date period is not in a correct format
      security:
      - oauth2: []
  /v1/resourceowner/reports3/vehiclesummary/{dateperiod}/{vehicleId}:
    get:
      tags:
      - ResourceOwnerReports3
      summary: Get a vehicle summary report
      description: Only vehicles that the user is associated with will be returned by this operation. 400 bad request is returend if the date period parameter is not in a correct format
      operationId: GetVehicleSummaryReportByVehicleId3
      parameters:
      - in: path
        name: dateperiod
        description: Date period parameter, in the form of only year (2014), year and month (201401), or interval {201301-201401}
        required: true
        schema:
          type: string
      - in: path
        name: vehicleId
        description: Report will be filtered on vehicle Id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The vehicle summary report returned
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/VehicleSummaryModel'
            application/json:
              schema:
                $ref: '#/components/schemas/VehicleSummaryModel'
            text/json:
              schema:
                $ref: '#/components/schemas/VehicleSummaryModel'
        '500':
          description: Internal server error
        '400':
          description: Bad request, date period is not in a correct format
      security:
      - oauth2: []
  /v1/resourceowner/reports3/vehiclessummary/{dateperiod}:
    get:
      tags:
      - ResourceOwnerReports3
      summary: Get vehicles summary report
      description: Only vehicles that the user is associated with will be returned by this operation. 400 bad request is returend if the date period parameter is not in a correct format
      operationId: GetVehiclesSummaryReport3
      parameters:
      - in: path
        name: dateperiod
        description: Date period parameter, in the form of only year (2014), year and month (201401), or interval {201301-201401}
        required: true
        schema:
          type: string
      responses:
        '200':
          description: The vehicles summary report is returned
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/VehiclesSummaryModel'
            application/json:
              schema:
                $ref: '#/components/schemas/VehiclesSummaryModel'
            text/json:
              schema:
                $ref: '#/components/schemas/VehiclesSummaryModel'
        '500':
          description: Internal server error
        '400':
          description: Bad request, date period is not in a correct format
      security:
      - oauth2: []
  /v1/resourceowner/reports3/emailtripreport:
    post:
      tags:
      - ResourceOwnerReports3
      summary: Email a trip journal report to a desired email address
      description: Only vehicles that the user is associated will be allowed
      operationId: EmailTripReport3
      responses:
        '200':
          description: Email with trip journal has been sent
        '500':
          description: Internal server error
        '404':
          description: ISO 639 language code does not exist
        '403':
          description: Not allowed to vehicle
      security:
      - oauth2: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EmailTripReportModel'
          text/json:
            schema:
              $ref: '#/components/schemas/EmailTripReportModel'
          application/*+json:
            schema:
              $ref: '#/components/schemas/EmailTripReportModel'
        description: The company model
  /v1/resourceowner/reports3/geofencelog:
    get:
      tags:
      - ResourceOwnerReports3
      summary: ''
      operationId: GetGeofenceLog3
      parameters:
      - in: query
        name: vehicleId
        description: ''
        schema:
          type: integer
          format: int32
      - in: query
        name: geofenceId
        description: ''
        schema:
          type: integer
          format: int32
      - in: query
        name: fromDate
        description: ''
        schema:
          type: string
          format: date-time
      - in: query
        name: toDate
        description: ''
        schema:
          type: string
          format: date-time
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/GeofenceReportModel'
            application/json:
              schema:
                $ref: '#/components/schemas/GeofenceReportModel'
            text/json:
              schema:
                $ref: '#/components/schemas/GeofenceReportModel'
      security:
      - oauth2: []
components:
  schemas:
    TripSummaryReportModel:
      type: object
      properties:
        ReportStartPeriod:
          format: int32
          type: integer
        ReportEndPeriod:
          format: int32
          type: integer
        VehicleId:
          format: int32
          type: integer
        TripType:
          format: int32
          enum:
          - 0
          - 1
          - 2
          type: integer
        DistanceInKilometers:
          format: double
          type: number
        TravelTimeInMinutes:
          format: int32
          type: integer
        FuelInLiters:
          format: double
          type: number
        NumberOfTrips:
          format: int32
          type: integer
      additionalProperties: false
    EmailTripReportModel:
      type: object
      properties:
        VehicleId:
          format: int32
          type: integer
        Period:
          format: int32
          type: integer
        ToEmail:
          type: string
        ISO639LanguageCode:
          type: string
        ExcludeDetailsForPersonalTrips:
          type: boolean
        ExcludeEnvironmentalAndFuelData:
          type: boolean
      additionalProperties: false
    CO2ReportModel:
      type: object
      properties:
        Period:
          format: int32
          type: integer
        BusinessCO2InGrams:
          format: double
          type: number
        PersonalCO2InGrams:
          format: double
          type: number
        OtherCO2InGrams:
          format: double
          type: number
      additionalProperties: false
    VehicleTinyModel:
      type: object
      properties:
        VehicleId:
          format: int32
          type: integer
        NumberPlate:
          type: string
        Make:
          type: string
        Model:
          type: string
        FriendlyName:
          type: string
        FuelType:
          format: int32
          enum:
          - 0
          - 1
          - 2
          - 3
          - 4
          - 5
          - 6
          - 7
          - 8
          - 9
          - 10
          type: integer
        ModelYear:
          format: int32
          type: integer
        ImageUrlMake:
          type: string
        UserFriendlyName:
          type: string
      additionalProperties: false
    TravelTimeReportModel:
      type: object
      properties:
        Period:
          format: int32
          type: integer
        BusinessTravelTimeInMinutes:
          format: int32
          type: integer
        PersonalTravelTimeInMinutes:
          format: int32
          type: integer
        OtherTravelTimeInMinutes:
          format: int32
          type: integer
      additionalProperties: false
    VehiclesSummaryModel:
      type: object
      properties:
        DistanceReports:
          type: array
          items:
            $ref: '#/components/schemas/DistanceReportModel'
        FuelReports:
          type: array
          items:
            $ref: '#/components/schemas/FuelReportModel'
        TravelTimeReports:
          type: array
          items:
            $ref: '#/components/schemas/TravelTimeReportModel'
        CO2Reports:
          type: array
          items:
            $ref: '#/components/schemas/CO2ReportModel'
        IdleTimeReports:
          type: array
          items:
            $ref: '#/components/schemas/IdleTimeReportModel'
      additionalProperties: false
    GeofenceReportModel:
      type: object
      properties:
        FromDate:
          format: date-time
          type: string
        ToDate:
          format: date-time
          type: string
        VehicleId:
          format: int32
          type: integer
        GeofenceId:
          format: int32
          type: integer
        Result:
          type: array
          items:
            $ref: '#/components/schemas/GeofenceRecordReportModel'
      additionalProperties: false
    VehicleSummaryModel:
      type: object
      properties:
        DistanceReports:
          type: array
          items:
            $ref: '#/components/schemas/DistanceReportModel'
        FuelReports:
          type: array
          items:
            $ref: '#/components/schemas/FuelReportModel'
        TravelTimeReports:
          type: array
          items:
            $ref: '#/components/schemas/TravelTimeReportModel'
        CO2Reports:
          type: array
          items:
            $ref: '#/components/schemas/CO2ReportModel'
        IdleTimeReports:
          type: array
          items:
            $ref: '#/components/schemas/IdleTimeReportModel'
        VehicleId:
          format: int32
          type: integer
      additionalProperties: false
    FuelReportModel:
      type: object
      properties:
        Period:
          format: int32
          type: integer
        BusinessFuelInLiters:
          format: double
          type: number
        PersonalFuelInLiters:
          format: double
          type: number
        OtherFuelInLiters:
          format: double
          type: number
      additionalProperties: false
    DistanceReportModel:
      type: object
      properties:
        Period:
          format: int32
          type: integer
        BusinessDistanceInKilometers:
          format: double
          type: number
        PersonalDistanceInKilometers:
          format: double
          type: number
        OtherDistanceInKilometers:
          format: double
          type: number
      additionalProperties: false
    GeofenceRecordReportModel:
      type: object
      properties:
        TripId:
          format: int32
          type: integer
        GeofenceId:
          format: int32
          type: integer
        GeofenceName:
          type: string
        GeofenceType:
          format: int32
          enum:
          - 0
          - 1
          - 2
          type: integer
        IsInside:
          type: boolean
        EventDateTime:
          format: date-time
          type: string
        VehicleTinyModel:
          $ref: '#/components/schemas/VehicleTinyModel'
      additionalProperties: false
    IdleTimeReportModel:
      type: object
      properties:
        Period:
          format: int32
          type: integer
        BusinessIdleTimeInMinutes:
          format: int32
          type: integer
        PersonalIdleTimeInMinutes:
          format: int32
          type: integer
        OtherIdleTimeInMinutes:
          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