Shiftmove Vehicle license plates API
The Vehicle license plates API from Shiftmove — 3 operation(s) for vehicle license plates.
The Vehicle license plates API from Shiftmove — 3 operation(s) for vehicle license plates.
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/shiftmove-vehicle-license-plates-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:
version: 1.2.3
title: Fleet API Specifications Custom fields Vehicle license plates API
x-logo:
url: logo.svg
description: "# Introduction\nThe Avrios Fleet-API allows syncing fleet data with our system. The provided API allows you to persist, update, delete and query various entities. Refer to the current [Release Notes](release-notes.html) for relevant changes in the API. \n# Access and usage\n## Authorization\nIn order to use the API a basic auth header must be set on each request: `Authorization: Basic {base64 of username:password}`.\n## Rate limiting\nRequests are limited to 300 requests per minute.\n## Response objects \nIn all API responses, only populated fields will be returned - `null` fields are stripped from the response object.\n## Update endpoints\nWhen updating existing entities, unless otherwise specified we will only update properties sent in the request, and all properties are optional. Clearing a property can be performed by explicitly sending `null`.\n## Date interpretation \nFor consistency with the Avrios UI, some APIs accept dates in the format `yyyy-MM-dd` rather than timestamps. If these are used for filtering or business logic, they will be interpreted as the first second of the day in the company timezone (e.g. `2020-01-01` in CET becomes `2019-12-31T23:00:00Z)`."
servers:
- url: https://api.avrios.com
tags:
- name: Vehicle license plates
paths:
/v1/vehicles/{uuid}/licensePlates:
get:
tags:
- Vehicle license plates
summary: GET vehicle license plates
description: Get all license plates over time of a specific vehicle.
operationId: findVehicleLicensePlates
parameters:
- name: uuid
in: path
required: true
schema:
type: string
format: uuid
- name: limit
in: query
description: Number of items in a page
required: false
schema:
type: integer
maximum: 100
minimum: 1
- name: pageNumber
in: query
description: Number of the page
required: false
schema:
type: integer
minimum: 1
- name: sortBy
in: query
description: Sorting key
required: false
schema:
type: string
enum:
- uuid
- plate
- duration_startDate
- duration_endDate
- active
- name: reverse
in: query
description: Sorting order
required: false
schema:
type: boolean
enum:
- 'false'
- 'true'
responses:
'200':
description: Successful operation.
content:
application/json:
schema:
$ref: '#/components/schemas/ApiPageLicensePlateDto'
'400':
description: Bad request - information on the invalid fields will be provided in the response body
'404':
description: Vehicle not found.
post:
tags:
- Vehicle license plates
summary: ASSIGN a license plate to this vehicle
description: Assign a license plate (specified in the request body) to the vehicle under this url.
operationId: createVehicleLicensePlates
parameters:
- name: uuid
in: path
required: true
schema:
type: string
format: uuid
responses:
'200':
description: Successful operation.
content:
application/json:
schema:
$ref: '#/components/schemas/LicensePlateDto'
'400':
description: Bad request - information on the invalid fields will be provided in the response body
'404':
description: Vehicle not found.
'409':
description: The new license plate conflicts with one or more others. The conflicting license plates will be returned in an error response.
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CreateLicensePlateRequest'
/v1/vehicles/{uuid}/licensePlates/{licensePlateUuid}:
delete:
tags:
- Vehicle license plates
summary: DELETE vehicle license plate
description: Delete license plate identified by uuid path parameter from vehicle.
operationId: deleteVehicleLicensePlates
parameters:
- name: uuid
in: path
required: true
schema:
type: string
format: uuid
- name: licensePlateUuid
in: path
required: true
schema:
type: string
format: uuid
responses:
'200':
description: successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/Void'
'204':
description: Successful operation - no content is expected.
'400':
description: Bad request - information on the invalid fields will be provided in the response body
'404':
description: Vehicle not found or this license plate was not found for this vehicle.
/v1/vehicles/{uuid}/licensePlates/{licensePlateUuid}/duration:
post:
tags:
- Vehicle license plates
summary: UPDATE the duration of an existing license plate
description: Change the timing of a specific license plate. Body is a map of fields to update.
operationId: updateVehicleLicensePlates
parameters:
- name: uuid
in: path
required: true
schema:
type: string
format: uuid
- name: licensePlateUuid
in: path
required: true
schema:
type: string
format: uuid
responses:
'200':
description: Successful operation.
content:
application/json:
schema:
$ref: '#/components/schemas/LicensePlateDto'
'400':
description: Bad request - information on the invalid fields will be provided in the response body
'404':
description: Vehicle or assignment not found.
'409':
description: The new license plate timing conflicts with one or multiple others. The conflicting license plates will be returned in an error response.
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/DurationUpdateApiParams'
components:
schemas:
CreateLicensePlateRequest:
type: object
properties:
plate:
type: string
duration:
$ref: '#/components/schemas/DurationDto'
DurationUpdateApiParams:
type: object
properties:
startDate:
type: string
format: date-time
endDate:
type:
- string
- 'null'
format: date-time
Void:
type: object
ApiPageLicensePlateDto:
type: object
properties:
items:
type: array
items:
$ref: '#/components/schemas/LicensePlateDto'
page:
$ref: '#/components/schemas/ApiPageInformation'
totalItems:
type: integer
format: int64
ApiPageInformation:
type: object
properties:
pageNumber:
type: integer
format: int32
limit:
type: integer
format: int32
LicensePlateDto:
type: object
properties:
uuid:
type: string
format: uuid
plate:
type: string
duration:
$ref: '#/components/schemas/DurationDto'
active:
type: boolean
DurationDto:
type: object
properties:
startDate:
type: string
format: date-time
endDate:
type: string
format: date-time
x-tagGroups:
- name: Vehicles
tags:
- Vehicles
- Vehicle license plates
- Vehicle assignments
- Vehicle usages
- Vehicle custom fields
- Vehicle financing
- name: Drivers
tags:
- Drivers
- Driver assignments
- Driver custom fields
- name: Other
tags:
- Custom fields
- Invoices
- Organizations