Skip to main content
Skip table of contents

CreateLicensePlate

Добавление автомобильного номера

Метод для добавления автомобильных номеров в созданную ранее коллекцию автомобильных номеров.

POST /api/license_plate_collections/{license-plate-collection-uid}/images?format=json?license=<license>

Аргументы запроса

string

 license

-plate-collection-uid* уникальный идентификатор коллекции автомобильных номеров.

Параметры метода

string

 license_plate REQUIRED, автомобильный номер.

200 OK

Возвращает JSON объект с идентификатором созданного автомобильного номера

JSON
{
    "license_plate_uid": "<license-plate-uid>"
}
404 Not Found

Коллекция с таким UID не найдена

cURL
BASH
curl -k --request POST \
	--url 'https://your-domain/api/license_plate_collections/{license-plate-collection-uid}/images?format=json?license=<license>' \
	--header 'Content-Type: application/json' \
	--header 'Accept: application/json' \
	--data '{
    "license_plate": "string"
}'
PHP
PHP
$data = array (
  'license_plate' => 'string',
);
$context = stream_context_create([
	'ssl'=>['verify_peer' => false],
	'http' => [
		'method' => 'POST',
		'header' => "Content-Type: application/json\r
Accept: application/json",
		'content'=>json_encode($data)
	]
]);
$result = file_get_contents('https://your-domain/api/license_plate_collections/{license-plate-collection-uid}/images?format=json?license=<license>', false, $context);
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.