[Mobotix] : Getting started with the HTTP API - Printable Version +- Online Tips n Tricks (https://a-zgsm.com/tipsntricks) +-- Forum: Home Automation (https://a-zgsm.com/tipsntricks/forum-17.html) +--- Forum: Access Control (https://a-zgsm.com/tipsntricks/forum-20.html) +--- Thread: [Mobotix] : Getting started with the HTTP API (/thread-3488.html) |
Getting started with the HTTP API - nnm - 29-08-2020 Introduction An application-programming interface (API) is a set of programming instructions and standards for accessing a software application or Web tool. An API is a software-to-software interface, not a user interface. With APIs, applications talk to each other without any user knowledge or intervention. MOBOTIX HTTP API The HTTP API (Application Programming Interface) is a software interface to the camera and allows to conveniently integrate the camera into a centralized management system. The interface consists of several CGI scripts that can be called with parameters and values using HTTP commands. By means of these scripts, you can modify the settings of the dialogs in Setup Menu and execute certain camera functions. Most common uses
A normal HTTP request from the browser looks like this: Code: http://<ip_address_for_the_camera>/control/control?list§ion=recording which can be split in the following:
Code: protocol + destination + cgi-call + parameters The previous request will deliver the following HTTP response: [color=var(--tertiary)] [color=var(--secondary)]imagen.png[color=var(--secondary-high)]3358×1884 834 KB[/color][/color] [/url][/color] where the current configuration options for recordings are visualized. CGI Calls /control/control Using the HTTP command Code: http://<ip_address_for_the_camera>/control/control you can modify the settings of the Setup menu. Type Code: http://<ip_address_for_the_camera>/control/control?list to display the different sections available. [color=var(--tertiary)] [color=var(--secondary)]imagen.png[color=var(--secondary-high)]1202×972 166 KB[/color][/color] [/color] /admin/control Using the HTTP command Code: http://<ip_address_for_the_camera>/admin/control you can modify the settings of the Admin menu. Type Code: http://<ip_address_for_the_camera>/admin/control?list to display the different sections available. [color=var(--tertiary)] [color=var(--secondary)]imagen.png[color=var(--secondary-high)]1154×538 105 KB[/color][/color] [/color] /control/rcontrol and /admin/rcontrol Using the HTTP command Code: http://<ip_address_for_the_camera>/control/rcontrol?list you can visualize specific [b]actions[/b] which can be executed Code: http://<ip_address_for_the_camera>/control/rcontrol?action=sound&soundfile=Alarm by calling this HTTP request the camera will play a sound file. Some of these functions can only be called as an [b]admin[/b] user [color=var(--tertiary)] [color=var(--secondary)]imagen.png[color=var(--secondary-high)]1368×92 26.9 KB[/color][/color] [/color] in this case the HTTP Request would be: Code: http://<ip_address_for_the_camera>/admin/rcontrol?action=reboot vPTZ Settings As a consequence of integrating the Q camera models, the cameras offer vPTZ features (virtual Pan/Tilt/Zoom) also in the HTTP API. The corresponding features have been documented on specific help dialogs, which can be opened using the corresponding links: click.cgi This interface provides limited access to simple vPTZ features. Code: http://<ip_address_for_the_camera>/control/click.cgi?help rotor.cgi This interface provides full access to all vPTZ features. Code: http://<ip_address_for_the_camera>/control/rotorcgi?help control?list§ion=vptzcontrol control also provides access to some vPTZ features, as outlined in the vptzcontrol section. Code: http://<ip_address_for_the_camera>/control/control?list§ion=vptzcontrol Image CGI-Calls Additionally there is a set of CGI calls to retrieve live images, video streams and recordings of the camera directly from the integrated web server. /record/current.jpg Code: http://<ip_address_for_the_camera>/record/current.jpg
Code: http://<ip_address_for_the_camera>/cgi-bin/image.jpg
Code: http://<ip_address_for_the_camera>/cgi-bin/image.jpg?camera=right&size=320x240&quality=60
Code: ?help Code: http://<ip_address_for_the_camera>/cgi-bin/image.jpg?help /cgi-bin/faststream.jpg or /control/faststream.jpg Retrieves the live stream from the camera using additional image parameters.
Provides access the camera’s events and allows adding additional parameters. Code: http://<ip_address_for_the_camera>/cgi-bin/event.jpg The following request, for example, delivers the last event image of the camera: Code: http://<ip_address_for_the_camera>/control/event.jpg?sequence=head Appending ?help to the end of the command will display the corresponding help page with al the options available: Code: http://<ip_address_for_the_camera>/control/event.jpg?help Additional help The help pages on the camera provide an overview of the API commands and addtional examples. The help pages can be accessed clicking on the ? icon on the top right corner of the camera web interface or via the url: Code: http://<ip_address_for_the_camera>/help/help Down at the bottom of the MOBOTIX Online Help is the Remote-Controlling section [color=var(--tertiary)] [color=var(--secondary)]imagen.png[color=var(--secondary-high)]816×202 36.7 KB[/color][/color] [url=https://aws1.discourse-cdn.com/standard14/uploads/mobotix/original/1X/f7c12a77bb780b5e0f646031449a38f70bbbdb9a.png][/color] |