Automile ResourceOwnerVehicleGeofence API
The ResourceOwnerVehicleGeofence API from Automile — 2 operation(s) for resourceownervehiclegeofence.
The ResourceOwnerVehicleGeofence API from Automile — 2 operation(s) for resourceownervehiclegeofence.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/automile-resourceownervehiclegeofence-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Automile Resource Owner Vehicle Geofence API
version: v1
tags:
- name: ResourceOwnerVehicleGeofence
paths:
/v1/resourceowner/vehiclegeofence/{vehicleGeofenceId}:
get:
tags:
- ResourceOwnerVehicleGeofence
summary: Get vehicle geofence
description: Only vehicle geofences that the user has access to are accessible.
operationId: GetResourceOwnerVehicleGeofence
parameters:
- in: path
name: vehicleGeofenceId
description: The vehicle geofence id
required: true
schema:
type: integer
format: int32
responses:
'200':
description: The geofences are returned
content:
text/plain:
schema:
$ref: '#/components/schemas/VehicleGeofenceModel'
application/json:
schema:
$ref: '#/components/schemas/VehicleGeofenceModel'
text/json:
schema:
$ref: '#/components/schemas/VehicleGeofenceModel'
'403':
description: Request is forbidden, meaning you don't have access to this geofence
'500':
description: Internal server error
security:
- oauth2: []
delete:
tags:
- ResourceOwnerVehicleGeofence
summary: Removes association between a vehicle and geofence
description: This will remove the association between a geofence and a vehicle.
operationId: DeleteResourceOwnerVehicleGeofence
parameters:
- in: path
name: vehicleGeofenceId
description: The vehicleGeofenceId association to remove
required: true
schema:
type: integer
format: int32
responses:
'200':
description: The vehcilegeofnece has been deleted
'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: []
put:
tags:
- ResourceOwnerVehicleGeofence
summary: Updates a vehicle geofence
description: This will update the given vehicle geofence id with a new model.
operationId: EditResourceOwnerVehicleGeofence
parameters:
- in: path
name: vehicleGeofenceId
description: The vehicleGeofenceId
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/VehicleGeofenceEditModel'
text/json:
schema:
$ref: '#/components/schemas/VehicleGeofenceEditModel'
application/*+json:
schema:
$ref: '#/components/schemas/VehicleGeofenceEditModel'
description: The new vehicleGeofence model
/v1/resourceowner/vehiclegeofence:
get:
tags:
- ResourceOwnerVehicleGeofence
summary: Get vehicle geofence
description: Only vehicle geofences that the user has access to are accessible.
operationId: GetResourceOwnerVehicleGeofenceGeofenceId
parameters:
- in: query
name: geofenceId
description: The geofence id
schema:
type: integer
format: int32
responses:
'200':
description: The geofences are returned
content:
text/plain:
schema:
type: array
items:
$ref: '#/components/schemas/VehicleGeofenceModel'
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/VehicleGeofenceModel'
text/json:
schema:
type: array
items:
$ref: '#/components/schemas/VehicleGeofenceModel'
'403':
description: Request is forbidden, meaning you don't have access to this geofence
'500':
description: Internal server error
security:
- oauth2: []
post:
tags:
- ResourceOwnerVehicleGeofence
summary: Associate a vehicle with a geofence
description: This will create a new association between a geofence and a vehicle.
operationId: CreateResourceOwnerVehicleGeofence
responses:
'200':
description: A link in the header is returned to the newly created geofence
'400':
description: Bad request, could occur for a number of cases, see returned message
'403':
description: Request is forbidden, meaning you don't have access to this geofence
'500':
description: Internal server error
security:
- oauth2: []
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/VehicleGeofenceCreateModel'
text/json:
schema:
$ref: '#/components/schemas/VehicleGeofenceCreateModel'
application/*+json:
schema:
$ref: '#/components/schemas/VehicleGeofenceCreateModel'
description: The company model
components:
schemas:
VehicleGeofenceModel:
type: object
properties:
VehicleGeofenceId:
format: int32
type: integer
VehicleId:
format: int32
type: integer
GeofenceId:
format: int32
type: integer
ValidFrom:
format: date-time
type: string
ValidTo:
format: date-time
type: string
additionalProperties: false
VehicleGeofenceEditModel:
type: object
properties:
ValidFrom:
format: date-time
type: string
ValidTo:
format: date-time
type: string
additionalProperties: false
VehicleGeofenceCreateModel:
required:
- GeofenceId
- VehicleId
type: object
properties:
VehicleId:
format: int32
type: integer
GeofenceId:
format: int32
type: integer
ValidFrom:
format: date-time
type: string
ValidTo:
format: date-time
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