Automile ResourceOwnerVehiclePlace API

The ResourceOwnerVehiclePlace API from Automile — 2 operation(s) for resourceownervehicleplace.

Operations 5

GET /v1/resourceowner/vehicleplace/{vehiclePlaceId} Get vehicle place #
PUT /v1/resourceowner/vehicleplace/{vehiclePlaceId} Edit the relationship between the vehicle and the place #
DELETE /v1/resourceowner/vehicleplace/{vehiclePlaceId} Removes association between a vehicle and place #
GET /v1/resourceowner/vehicleplace Get vehicle place #
POST /v1/resourceowner/vehicleplace Associate a vehicle with a place #

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-resourceownervehicleplace-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-resourceownervehicleplace-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Automile ClientApi Resource Owner Vehicle Place API
  version: v1
servers:
- url: https://api.automile.com/
tags:
- name: ResourceOwnerVehiclePlace
paths:
  /v1/resourceowner/vehicleplace/{vehiclePlaceId}:
    get:
      tags:
      - ResourceOwnerVehiclePlace
      summary: Get vehicle place
      description: Only vehicle places that the user has access to are accessible.
      operationId: GetResourceOwnerVehiclePlace
      parameters:
      - in: path
        name: vehiclePlaceId
        description: The vehicle place id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The vehicle places are returned
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/VehiclePlaceModel'
            application/json:
              schema:
                $ref: '#/components/schemas/VehiclePlaceModel'
            text/json:
              schema:
                $ref: '#/components/schemas/VehiclePlaceModel'
        '403':
          description: Request is forbidden, meaning you don't have access to this place
        '500':
          description: Internal server error
      security:
      - oauth2: []
    put:
      tags:
      - ResourceOwnerVehiclePlace
      summary: Edit the relationship between the vehicle and the place
      operationId: EditResourceOwnerVehiclePlace
      parameters:
      - in: path
        name: vehiclePlaceId
        description: The vehicle place id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The vehiclegeofence was saved
        '400':
          description: Bad request, could occur for a number of cases, see returned message
        '403':
          description: Bad request, could occur for a number of cases, see returned message
        '500':
          description: Internal server error
      security:
      - oauth2: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VehiclePlaceEditModel'
          text/json:
            schema:
              $ref: '#/components/schemas/VehiclePlaceEditModel'
          application/*+json:
            schema:
              $ref: '#/components/schemas/VehiclePlaceEditModel'
        description: The new vehicle place model
    delete:
      tags:
      - ResourceOwnerVehiclePlace
      summary: Removes association between a vehicle and place
      description: This will remove the association between a place and a vehicle.
      operationId: DeleteResourceOwnerVehiclePlace
      parameters:
      - in: path
        name: vehiclePlaceId
        description: The vehiclePlaceId association to remove
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The vehicleplace has been deleted
        '500':
          description: Internal server error
        '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
      security:
      - oauth2: []
  /v1/resourceowner/vehicleplace:
    get:
      tags:
      - ResourceOwnerVehiclePlace
      summary: Get vehicle place
      description: Only vehicle places that the user has access to are accessible.
      operationId: GetResourceOwnerVehiclePlaceId
      parameters:
      - in: query
        name: placeId
        description: The place id
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The vehicle places are returned
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/VehiclePlaceModel'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/VehiclePlaceModel'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/VehiclePlaceModel'
        '403':
          description: Request is forbidden, meaning you don't have access to this place
        '500':
          description: Internal server error
      security:
      - oauth2: []
    post:
      tags:
      - ResourceOwnerVehiclePlace
      summary: Associate a vehicle with a place
      operationId: CreateResourceOwnerVehiclePlace
      responses:
        '200':
          description: A link in the header is returned to the newly created Vehicle Place
        '500':
          description: Internal server error
        '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
      security:
      - oauth2: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VehiclePlaceCreateModel'
          text/json:
            schema:
              $ref: '#/components/schemas/VehiclePlaceCreateModel'
          application/*+json:
            schema:
              $ref: '#/components/schemas/VehiclePlaceCreateModel'
        description: The model which to create the association between vehicle and place
components:
  schemas:
    VehiclePlaceCreateModel:
      required:
      - PlaceId
      - Radius
      - VehicleId
      type: object
      properties:
        VehicleId:
          format: int32
          type: integer
        PlaceId:
          format: int32
          type: integer
        Description:
          type: string
        TripType:
          format: int32
          enum:
          - 0
          - 1
          - 2
          - 3
          type: integer
        TripTypeTrigger:
          format: int32
          enum:
          - 0
          - 1
          - 2
          - 3
          type: integer
        Radius:
          format: int32
          type: integer
        DrivesBetweenAnotherPlaceId:
          format: int32
          type: integer
      additionalProperties: false
    VehiclePlaceModel:
      type: object
      properties:
        VehiclePlaceId:
          format: int32
          type: integer
        VehicleId:
          format: int32
          type: integer
        PlaceId:
          format: int32
          type: integer
        Description:
          type: string
        TripType:
          format: int32
          enum:
          - 0
          - 1
          - 2
          - 3
          type: integer
        TripTypeTrigger:
          format: int32
          enum:
          - 0
          - 1
          - 2
          - 3
          type: integer
        Radius:
          format: int32
          type: integer
        DrivesBetweenAnotherPlaceId:
          format: int32
          type: integer
      additionalProperties: false
    VehiclePlaceEditModel:
      required:
      - Radius
      type: object
      properties:
        Description:
          type: string
        TripType:
          format: int32
          enum:
          - 0
          - 1
          - 2
          - 3
          type: integer
        TripTypeTrigger:
          format: int32
          enum:
          - 0
          - 1
          - 2
          - 3
          type: integer
        Radius:
          format: int32
          type: integer
        DrivesBetweenAnotherPlaceId:
          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