Documentation for Auto PSIM 1.0.1.

Previous page Receiving an image by ID  General information about HTTP API in Auto PSIM Next page

You can use a POST request to search by a vehicle license plate.

General request format:

POST http://IP address:port/lprserver/GetProtocolNumbers

Request body:

{
"id": {id},
"time_from": {time_from},
"numbers_text": {numbers_text},
"numbers_operation": "OR"
}

Parameters in the request body:

ParameterRequiredDescription
idYesServer ID. If you want to get search result by several servers, specify the required ids separated by a comma
time_fromNoBeginning of the time range of storing information on license plates from a database. Format YYYY-MM-DDThh:mm:ss.sss
time_toNoEnd of the time range of storing information on license plates from a database. Format YYYY-MM-DDThh:mm:ss.sss
numbers_textNoLicense plate. If you want to get search result by several license plates, specify the required license plates separated by a space. You can also search by a license plate template using %
numbers_operationNoYou must specify this parameter to get search result by several numbers in one request. The parameter value is OR
cam_idNoCamera ID. If you want to get search result by several cameras, specify the required ids separated by a space
countriesNoCountry. You must specify the country according to Axxon PSIM localization. Specify several countries separated by a comma
plate_directionNo

Direction of vehicle movement. Values:

0—not defined;

1—from camera;

2—towards camera;

3—to the right;

4— to the left

commentNoComment. Specify several comments separated by a space
comment_operationNoYou must specify this parameter to get search result by several comments in one request. The parameter value is OR
speed_fromNoLower value of the speed limit range
speed_toNoUpper value of the speed limit range
validaty_fromNoLower value of the validity limit range
validaty_toNoUpper value of the validity limit range
numbers_regionNoRegion number. If you want to get search result by several regions, specify the required numbers separated by a comma
plates_colorNoLicense plate color. IS NULL—not defined

Request example:

POST http://127.0.0.1:10001/lprserver/GetProtocolNumbers

{
"id": "1,2",
"time_from": "2021-05-28T16:10:35.000",
"numbers_text": "К673УК163 Р127РО62",
"numbers_operation": "OR"
}

Response example:

{
"Protocols": [
"frame": "",
"license_plate": "",
"regional_code": "",
"number": "К673УК163",
"detectors_name": "LPR channel 1",
"speed": "",
"country": "",
"date": "12.06.2021 13:09:21",
"recognizer_address": "",
"valid_speed": "",
"speeding": "",
"direction": "2",
"validity": "97",
"alarm time": "",
"alarm_initiated_by": "",
"alarm_accepted_by": "",
"comment_from_external_db": "",
"alarm_accepted_at": "",
"alarm_handling_delay": "",
"comment": "",
"alarm_type": "",
"alarm_processed": "",
"external_db": "",
"red_light_phase_start_time": "",
"time_passed_since_the_red_light_phase_start": "",
"category": "",
"camera": "Camera 1",
"type": "",
"vendor": "",
"model": "",
"frame_from_synchronous_camera": "",
"dangerous_goods_class": "",
"dangerous_goods_composition": ""
},
"frame": "",
"license_plate": "",
"regional_code": "",
"number": "Р127РО62",
"detectors_name": "LPR channel 1",
"speed": "",
"country": "",
"date": "12.06.2021 13:09:38",
"recognizer_address": "",
"valid_speed": "",
"speeding": "",
"direction": "1",
"validity": "69",
"alarm time": "",
"alarm_initiated_by": "",
"alarm_accepted_by": "",
"comment_from_external_db": "",
"alarm_accepted_at": "",
"alarm_handling_delay": "",
"comment": "",
"alarm_type": "",
"alarm_processed": "",
"external_db": "",
"red_light_phase_start_time": "",
"time_passed_since_the_red_light_phase_start": "",
"category": "",
"camera": "Camera 1",
"type": "",
"vendor": "",
"model": "",
"frame_from_synchronous_camera": "",
"dangerous_goods_class": "",
"dangerous_goods_composition": "",

"plate_numbers.id": "{6696D008-30B9-EB11-9644-1831BF4C3BFA}"
}

],
"Status": "OK"
}

where plate_numbers.id—ID of a vehicle license plate image and (if any) frame from the synchronous camera.

  • No labels