Skip to main content
Skip table of contents

CreateLicensePlateCollection

Создание коллекции автомобильных номеров

Метод для создания новой коллекции автомобильных номеров. Изначально создается коллекция, потом в нее добавляются автомобильные номера.

POST /api/license_plate_collections/?format=json
200 OK

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

JSON
{
    "license_plate_collection_uid": "<license-plate-collection-uid>"
}
cURL
BASH
curl -k --request POST \
	--url 'https://your-domain/api/license_plate_collections/?format=json' \
	--header 'Content-Type: application/json' \
	--header 'Accept: application/json' \
	--data '[]'
PHP
PHP
$data = array (
);
$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/?format=json', false, $context);
JavaScript errors detected

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

If this problem persists, please contact our support.