---
title: "ASSIGN a license plate to this vehicle"
method: POST
path: "/v1/vehicles/{uuid}/licensePlates"
tags: ["Vehicle license plates"]
---

# ASSIGN a license plate to this vehicle

`POST /v1/vehicles/{uuid}/licensePlates`

Assign a license plate (specified in the request body) to the vehicle under this url.

## Path parameters

- `uuid` string, uuid, required

## Request body

- CreateLicensePlateRequest
  - `plate` string
  - `duration` DurationDto
    - `startDate` string, date-time
    - `endDate` string, date-time

## Response `200`

Successful operation.

- LicensePlateDto
  - `uuid` string, uuid
  - `plate` string
  - `duration` DurationDto
    - `startDate` string, date-time
    - `endDate` string, date-time
  - `active` boolean

## Other responses

- `400` — Bad request - information on the invalid fields will be provided in the response body
- `404` — Vehicle not found.
- `409` — The new license plate conflicts with one or more others. The conflicting license plates will be returned in an error response.

---

[API](https://skmtc.net/avrios/apis/fleet-api-specifications.md) · [All operations](https://skmtc.net/avrios/apis/fleet-api-specifications/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/avrios/fleet-api-specifications/revisions/78fc4b609513/schema)
