Go to documentation repository
Documentation for Intellect 4.11.0-4.11.3. Documentation for other versions of Intellect is available too.
Previous page Next page
The Intellect HTTP API allows you to access the Face-Intellect API or Auto-Intellect API via Web Server 2.0. To use this feature, you need the following:
- Face-Intellect REST API:
- The Face Recognition Server object must be added to the Web server 2.0 filter (see Configuring the Events filter for the Web-server 2.0 module)
- The response to the request for the list of objects must contain an object FIRSERVER type (see Getting list of all server objects)
- Auto-Intellect REST API:
- The LPR channel object must be added to the Web server 2.0 filter (see Configuring the Events filter for the Web-server 2.0 module)
- The response to a request for a list of objects must contain an object of the ULPR type (see Getting list of all server objects)
General request format
POST http://IP-адрес:порт/web2/secure/{vertical_solution}/{function}
Request parameters
Parameter | Is required | Description |
---|---|---|
vertical_solution | Yes | Specifies the vertical solution to access the API. Possible values: auto – Auto Intellect face – Face Intellect |
function | Yes | Vertical solution API function. See the description of the corresponding API. |
Note.
Please refer to the documentation for the corresponding API function to see the parameters of the JSON sent in the POST request, .
Request example
POST http://1:1@127.0.0.1:8085/web2/secure/face/firserver/ReadPersons
{ "server_id": "1", "id": [ ], "page": 1, "pageSize": 2 }
Response example
Please refer to the documentation for the corresponding vertical solution API for the response examples.