Automile ResourceOwnerIMEIConfig3 API

The ResourceOwnerIMEIConfig3 API from Automile — 2 operation(s) for resourceownerimeiconfig3.

Operations 4

GET /v1/resourceowner/imeiconfigs3 Get all imeis(devices) that the logged in user has access to #
POST /v1/resourceowner/imeiconfigs3 Creates a new IMEIConfig and associates it with vehicle #
GET /v1/resourceowner/imeiconfigs3/{imeiConfigId} Get IMEIconfig by IMEIconfigId #
PUT /v1/resourceowner/imeiconfigs3/{imeiConfigId} Updates the given IMEIConfig id #

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-resourceownerimeiconfig3-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-resourceownerimeiconfig3-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Automile ClientApi Resource Owner IMEI Config3 API
  version: v1
servers:
- url: https://api.automile.com/
tags:
- name: ResourceOwnerIMEIConfig3
paths:
  /v1/resourceowner/imeiconfigs3:
    get:
      tags:
      - ResourceOwnerIMEIConfig3
      summary: Get all imeis(devices) that the logged in user has access to
      description: Only vehicles that the user is associated with will be returned by this operation.
      operationId: GetResourceOwnerImeiConfigs3
      parameters:
      - in: query
        name: includeDeviceType
        schema:
          type: boolean
          default: false
      responses:
        '200':
          description: The Imeis are returned
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/IMEIConfig3Model'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/IMEIConfig3Model'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/IMEIConfig3Model'
        '500':
          description: Internal server error
      security:
      - oauth2: []
    post:
      tags:
      - ResourceOwnerIMEIConfig3
      summary: Creates a new IMEIConfig and associates it with vehicle
      operationId: CreateResourceOwnerIMEIConfig3
      responses:
        '200':
          description: A link in the header is returned to the newly created ImeiConfig
        '403':
          description: Request is forbidden, this could occur if you try to add an IMEI that already exists or if it is not available in our systems. In addition, if the serialnumber to the IMEI device is incorrect
        '500':
          description: Internal server error
      security:
      - oauth2: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IMEIConfigCreate3Model'
          text/json:
            schema:
              $ref: '#/components/schemas/IMEIConfigCreate3Model'
          application/*+json:
            schema:
              $ref: '#/components/schemas/IMEIConfigCreate3Model'
        description: The IMEI Config model
  /v1/resourceowner/imeiconfigs3/{imeiConfigId}:
    get:
      tags:
      - ResourceOwnerIMEIConfig3
      summary: Get IMEIconfig by IMEIconfigId
      description: The user only has access to IMEIconfig that it is associated with through the companies or directly thorugh vehicles
      operationId: GetResourceOwnerIMEIConfigsBasedOnVehicleId3
      parameters:
      - in: path
        name: imeiConfigId
        description: The IMEIconfig id
        required: true
        schema:
          type: integer
          format: int32
      - in: query
        name: includeDeviceType
        description: ''
        schema:
          type: boolean
          default: false
      responses:
        '200':
          description: The Imeis are returned
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/IMEIConfigDetail3Model'
            application/json:
              schema:
                $ref: '#/components/schemas/IMEIConfigDetail3Model'
            text/json:
              schema:
                $ref: '#/components/schemas/IMEIConfigDetail3Model'
        '500':
          description: Internal server error
        '403':
          description: Request is forbidden, meaning you dont' have access to this IMEIconfig
        '404':
          description: The IMEIconfig that you tried to get doesn't exist
      security:
      - oauth2: []
    put:
      tags:
      - ResourceOwnerIMEIConfig3
      summary: Updates the given IMEIConfig id
      operationId: EditResourceOwnerIMEIConfig3
      parameters:
      - in: path
        name: imeiConfigId
        description: The IMEIConfig id that should be updated
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The IMEIConfig was saved
        '500':
          description: Internal server error
        '404':
          description: The IMEIConfig that you tried to update doesn't exist
        '403':
          description: Request is forbidden, this could occur if you try to add an IMEI that already exists or if it is not available in our systems. In addition, if the serialnumber to the IMEI device is incorrect
      security:
      - oauth2: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IMEIConfigEdit3Model'
          text/json:
            schema:
              $ref: '#/components/schemas/IMEIConfigEdit3Model'
          application/*+json:
            schema:
              $ref: '#/components/schemas/IMEIConfigEdit3Model'
        description: The IMEIConfig model
components:
  schemas:
    IMEIConfig3Model:
      type: object
      properties:
        IMEIConfigId:
          format: int32
          type: integer
        IMEI:
          type: string
        VehicleId:
          format: int32
          type: integer
        DeviceType:
          format: int32
          enum:
          - 0
          - 1
          - 2
          - 3
          - 4
          - 5
          - 6
          - 7
          - 8
          - 9
          - 255
          type: integer
        OrganizationId:
          format: int32
          type: integer
        IsEditable:
          type: boolean
        OrganizationNodeId:
          format: int32
          type: integer
      additionalProperties: false
    IMEIConfigDetail3Model:
      type: object
      properties:
        IMEIConfigId:
          format: int32
          type: integer
        IMEI:
          type: string
        VehicleId:
          format: int32
          type: integer
        DeviceType:
          format: int32
          enum:
          - 0
          - 1
          - 2
          - 3
          - 4
          - 5
          - 6
          - 7
          - 8
          - 9
          - 255
          type: integer
      additionalProperties: false
    IMEIConfigCreate3Model:
      type: object
      properties:
        IMEI:
          type: string
        VehicleId:
          format: int32
          type: integer
        SerialNumber:
          type: string
        IMEIDeviceType:
          format: int32
          enum:
          - 0
          - 1
          - 2
          - 3
          - 4
          - 5
          - 6
          - 7
          - 8
          - 9
          - 10
          - 11
          - 12
          - 13
          - 255
          type: integer
        OrganizationNodeId:
          format: int32
          type: integer
      additionalProperties: false
    IMEIConfigEdit3Model:
      required:
      - VehicleId
      type: object
      properties:
        VehicleId:
          format: int32
          type: integer
        IMEIDeviceType:
          format: int32
          enum:
          - 0
          - 1
          - 2
          - 3
          - 4
          - 5
          - 6
          - 7
          - 8
          - 9
          - 255
          type: integer
        OrganizationNodeId:
          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