Automile ResourceOwnerVehicleDefectComments API

The ResourceOwnerVehicleDefectComments API from Automile — 2 operation(s) for resourceownervehicledefectcomments.

Business capability
Fleet Maintenance Management BC-2430.20

Operations 4

GET /v1/resourceowner/vehicledefectcomments/{vehicleDefectCommentId} Get all a vehicle defect comment #
PUT /v1/resourceowner/vehicledefectcomments/{vehicleDefectCommentId} Update a vehicle defect comment #
GET /v1/resourceowner/vehicledefectcomments Get all vehicle defect comments that the user has access to #
POST /v1/resourceowner/vehicledefectcomments Creates a new vehicle defect comment #

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-resourceownervehicledefectcomments-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-resourceownervehicledefectcomments-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Automile ClientApi Resource Owner Vehicle Defect Comments API
  version: v1
servers:
- url: https://api.automile.com/
tags:
- name: ResourceOwnerVehicleDefectComments
paths:
  /v1/resourceowner/vehicledefectcomments/{vehicleDefectCommentId}:
    get:
      tags:
      - ResourceOwnerVehicleDefectComments
      summary: Get all a vehicle defect comment
      description: ''
      operationId: GetResourceOwnerVehicleDefectComment
      parameters:
      - in: path
        name: vehicleDefectCommentId
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The vehicle defect comment is returned
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/VehicleDefectCommentsModel'
            application/json:
              schema:
                $ref: '#/components/schemas/VehicleDefectCommentsModel'
            text/json:
              schema:
                $ref: '#/components/schemas/VehicleDefectCommentsModel'
        '500':
          description: Internal server error
      security:
      - oauth2: []
    put:
      tags:
      - ResourceOwnerVehicleDefectComments
      summary: Update a vehicle defect comment
      description: This will update the given vehicle id with a new model.
      operationId: EditResourceOwnerVehicleDefectComment
      parameters:
      - in: path
        name: vehicleDefectCommentId
        description: The vehicle defect comment id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The vehicle defect comment was saved
        '400':
          description: Bad request, could occur for a number of cases, see returned message
        '403':
          description: Request is forbidden, could occur for a number of reasons, see returned message
        '404':
          description: Not found, the vehicle defect comment you tried to update can't be found
        '500':
          description: Internal server error
      security:
      - oauth2: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VehicleDefectCommentsEditModel'
          text/json:
            schema:
              $ref: '#/components/schemas/VehicleDefectCommentsEditModel'
          application/*+json:
            schema:
              $ref: '#/components/schemas/VehicleDefectCommentsEditModel'
        description: The new vehicle inspection model
  /v1/resourceowner/vehicledefectcomments:
    get:
      tags:
      - ResourceOwnerVehicleDefectComments
      summary: Get all vehicle defect comments that the user has access to
      description: ''
      operationId: GetResourceOwnerVehicleDefectComments
      parameters:
      - in: query
        name: vehicleDefectId
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The vehicle defect comments are returned
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/VehicleDefectCommentsModel'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/VehicleDefectCommentsModel'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/VehicleDefectCommentsModel'
        '500':
          description: Internal server error
      security:
      - oauth2: []
    post:
      tags:
      - ResourceOwnerVehicleDefectComments
      summary: Creates a new vehicle defect comment
      description: This will create a new vehicle defect comment and make the association you set.
      operationId: CreateResourceOwnerVehicleDefectComment
      responses:
        '200':
          description: A link in the header is returned to the newly created vehicle defect comment
        '400':
          description: Bad request, could occur for a number of cases, see returned message
        '403':
          description: Request is forbidden, could occur for a number of reasons, see returned message
        '500':
          description: Internal server error
      security:
      - oauth2: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VehicleDefectCommentsCreateModel'
          text/json:
            schema:
              $ref: '#/components/schemas/VehicleDefectCommentsCreateModel'
          application/*+json:
            schema:
              $ref: '#/components/schemas/VehicleDefectCommentsCreateModel'
        description: The vehicle defect comment
components:
  schemas:
    VehicleDefectCommentsCreateModel:
      type: object
      properties:
        VehicleDefectId:
          format: int32
          type: integer
        Comment:
          type: string
      additionalProperties: false
    VehicleDefectCommentsModel:
      type: object
      properties:
        VehicleDefectCommentId:
          format: int32
          type: integer
        VehicleDefectId:
          format: int32
          type: integer
        CreatedByContactId:
          format: int32
          type: integer
        Comment:
          type: string
        CommentDateUtc:
          format: date-time
          type: string
      additionalProperties: false
    VehicleDefectCommentsEditModel:
      type: object
      properties:
        Comment:
          type: string
      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