The Milestone XProtect VMS has offered integration options through the MIP SDK plug-in architecture, native .NET components and libraries, and various protocols since 2011.
The Milestone Integration Platform VMS API will include RESTful APIs and other industry standard protocols that expose the functionality currently available through the MIP SDK native .NET libraries and various proprietary protocols.
Currently, the following APIs are available through the API Gateway:
You are assumed to be somewhat familiar with XProtect VMS products, the Milestone Integration Platform (MIP), and specifically the Configuration API.
You are assumed to be somewhat familiar with RESTful APIs, specifically OpenAPI 3.
To learn more about the Milestone Integration Platform, go to the Milestone Developer Forum.
A very comprehensive .NET Framework-based example of using the Configuration API is available at https://github.com/milestonesys/mipsdk-samples-component/tree/main/ConfigApiClient.
Milestone XProtect products are supported through the Milestone Support Community, the Milestone Developer Forum, and through a Milestone Technology Partner account.
To submit questions on the support forums, you must have a My Milestone account.
To create support cases, you must be a Milestone Technology Partner.
The XProtect VMS offers a number of APIs to support integrations. The full functionality is currently available through a plug-in environment, native .NET libraries, and various SOAP and native protocols. XProtect VMS uses these APIs internally, and 3rd-party developers have created many integrations using these APIs. But they are not practical for integrations in a cloud environment:
The API Gateway simplifies protocol-based integration by providing a single entry point for all services.
To use the API Gateway, a client first authenticates and requests an access token from the Identity Provider. Next, the client receives a bearer token that grants privileges to access services and perform operations as determined by the user's roles.
In subsequent requests, the client now uses the bearer token in the authorization header. The client renews the bearer token before it expires by posting a new access token request with the same credentials.
The API Gateway acts as a broker, routing requests and responses between the client and the various downstream XProtect VMS services.
User credentials, bearer tokens, and other sensitive data are transmitted in cleartext if you do not set up certificates and use HTTPS.
/securityNamespaces
and /effectivePermissions
./registeredServices
for managing registered services has been added./bookmarks
for managing bookmarks./evidenceLocks
for managing evidence locks.inactiveTimeoutSeconds
, included with the Start Session Response message.true
/false
without quotation marks./api/.well-known/uris
To upgrade from the 2021 R2 pre-release of the API Gateway to later releases, you'll have to uninstall the 2021 R2 pre-release before upgrading.
You are recommended to set up a small separate system for development.
You should consider setting up a server certificate and using HTTPS. While the IDP, the API Gateway, and the management server can all work with either HTTP or HTTPS, production systems should be set up with server certificates.
User credentials, bearer tokens, and other sensitive data are transmitted in cleartext if you do not set up certificates and use HTTPS.
The following instructions assume that you will set up a server certificate and use HTTPS. If you choose not to create and use a server certificate, replace https
with http
in the following installation instructions and skip steps related to managing certificates.
To set up a development system with the XProtect API Gateway, you'll need:
To deploy the system with certificates, you'll need:
If you have previously installed the 2021 R2 pre-release of the API Gateway, you'll have to uninstall the pre-release before proceeding.
Please refer to Milestone product system requirements for more information about system requirements.
This is a brief walkthrough of the installation of a simple development system with all system components on the same host.
For more information, go to Getting started with XProtect VMS.
If you have already set up a system with XProtect VMS 2022 R1 or later, you can skip to Verify that the API Gateway is operational. Please note that you need an XProtect Basic user account with the Administrators role to run the verification scripts.
You can find more information about the steps in Notes and tips.
Create and install a server certificate, for example, by following the instructions in XProtect VMS certificates guide.
Download the XProtect VMS products installer from the software download page.
Install XProtect VMS:
VMS SSL Certificate
you just created and installed in step 1.seamrune
and password Rad23Swops#
.Verify that you can get a list of well-known URIs from the API Gateway:
cURL
curl --insecure --request GET "https://test-01.example.com/api/.well-known/uris"
PowerShell
$response = Invoke-RestMethod 'https://test-01.example.com/api/.well-known/uris' -Method 'GET'
$response | ConvertTo-Json
Response body
{
"ProductVersion": "22.1.5804.1",
"UnsecureManagementServer": "http://test-01.example.com/",
"SecureManagementServer": "https://test-01.example.com/",
"IdentityProvider": "https://test-01.example.com/IDP",
"ApiGateways": [
"https://test-01.example.com/API/"
]
}
In case you had installed an API Gateway on another host, you could use the hostname of that host.
Verify that you can authenticate and retrieve a bearer token from the built-in IDP.
Replace the hostname test-01.example.com
, username seamrune
, and password Rad23Swops#
in the following code samples. In Windows Command Prompt (CMD), replace the line continuation character \
with ^
.
cURL
curl --insecure --request POST "https://test-01.example.com/API/IDP/connect/token" \
--header "Content-Type: application/x-www-form-urlencoded" \
--data-urlencode "grant_type=password" \
--data-urlencode "username=seamrune" \
--data-urlencode "password=Rad23Swops#" \
--data-urlencode "client_id=GrantValidatorClient"
PowerShell
$headers = @{ "Content-Type" = "application/x-www-form-urlencoded" }
$body = @{grant_type='password'
username='seamrune'
password='Rad23Swops#'
client_id='GrantValidatorClient'}
$response = Invoke-RestMethod 'https://test-01.example.com/API/IDP/connect/token' -Method 'POST' -Headers $headers -Body $body
$response | ConvertTo-Json
Response body
{
"access_token": "eyJhbGciOiJodHRwOi8vd3d3LnczLm9yZy8yMDAxLzA0L . . . ay0ferTwm-DZ4OxNXGTHk5t7R_YTWPjg",
"expires_in": 3600,
"token_type": "Bearer",
"scope": "managementserver"
}
Copy the access_token
value from the response body; you will use the value as the bearer token value in the following request.
Verify that you can submit a request through the API Gateway.
Replace the hostname test-01.example.com
and the bearer token value eyJhbG . . . YTWPjg
in the following code samples. In Windows Command Prompt (CMD), replace the line continuation character \
with ^
.
cURL
curl --insecure --request GET "https://test-01.example.com/api/rest/v1/sites" \
--header "Authorization: Bearer eyJhbGciOiJodHRwOi8vd3d3LnczLm9yZy8yMDAxLzA0L . . . ay0ferTwm-DZ4OxNXGTHk5t7R_YTWPjg"
PowerShell
$headers = @{ "Authorization" = "Bearer eyJhbGciOiJodHRwOi8vd3d3LnczLm9yZy8yMDAxLzA0L . . . ay0ferTwm-DZ4OxNXGTHk5t7R_YTWPjg" }
$response = Invoke-RestMethod 'https://test-01.example.com/api/rest/v1/sites' -Method 'GET' -Headers $headers
$response | ConvertTo-Json
Response body
{
"array": [
{
"displayName": "TEST-01",
"id": "2d12465c-3485-4ca8-a9fb-86a79de1a82f",
"name": "TEST-01",
"description": "",
"lastModified": "2021-11-11T11:11:11.1111111Z",
"timeZone": "Central Europe Time",
"computerName": "TEST-01",
"domainName": "example.com",
"lastStatusHandshake": "2021-11-11T11:11:11.1111111Z",
"physicalMemory": 0,
"platform": "[Not Available]",
"processors": 0,
"serviceAccount": "S-1-5-20",
"synchronizationStatus": 0,
"masterSiteAddress": "",
"version": "22.1.0.1",
"relations": {
"self": {
"type": "sites",
"id": "2d12465c-3485-4ca8-a9fb-86a79de1a82f"
}
}
}
]
}
Most of the Configuration API is supported with the free XProtect Essential+ license. To determine which XProtect VMS product license you need, please visit Milestone product index.
You can get a license in several ways:
After installation, you can use the XProtect Management Client to create XProtect Basic and Windows users.
For more information, go to XProtect VMS administrator manual/Create basic user.
Postman does not use the certificate store on your platform. To work with secure services, you have two options:
For more information, see Encryption, SSL/TLS, and Managing Your Certificates in Postman.
With certificate verification disabled, Postman makes no attempt to verify the connection.
For Postman, the CA certificate needs to be in PEM format. A PEM file is a collection of Base-64 encoded certificates contained within a single file. As long as the CA certificate is exported in Base-64 encoded format, Postman will accept a .cer
file.
The following instructions assume that you have set up your own CA certificate as described in XProtect VMS certificates guide and that you have the CA certificate installed on a Windows platform. Adjust as necessary for other CA certificates and platforms.
certlm.msc
.Download the OpenAPI specification for the Configuration API from https://doc.developer.milestonesys.com/mipvmsapi/api/config-rest/v1/openapi.yaml.
Simple code samples are available at Milestone System's GitHub page.
API Gateway configuration files are located in the installation location, by default %ProgramFiles%\Milestone\XProtect API Gateway\
.
These configuration files are relevant for the API Gateway:
appsettings.json
: Reverse proxy (routing), CORS, WebRTC, log levels, etc.appsettings.Production.json
: Overrides the configuration settings in appsettings.json
.nlog.config
: Log layout, log targets, etc.Use a validating editor to edit configuration files. Most popular code editors support JSON and XML syntax validation, either by default or through extensions.
Do not edit the
appsettings.json
file manually. The configuration is created by the XProtect product installer and maintained by the Server Configurator.
If you need to override a configuration setting in appsettings.json
, create appsettings.Production.json
and add configuration overrides here. appsettings.Production.json
will not be removed or changed by product updates.
To override configuration settings in appsettings.json
, copy the complete top-level property from appsettings.json
to appsettings.Production.json
and remove the nested properties that you don't want to change.
For example, to change the management server host address but no other ReverseProxy
settings, include this in appsettings.Production.json
:
{
"ReverseProxy": {
"Clusters": {
"managementserver": {
"Destinations": {
"hostname": {
"Address": "https://test-02.example.com/"
}
}
}
}
}
}
If you add several properties to appsettings.Production.json
, remember to include a comma between the properties but no trailing comma:
{
"Logging": {
"LogLevel": {
"Yarp": "Information"
}
},
"ReverseProxy": {
"Clusters": {
"managementserver": {
"Destinations": {
"hostname": {
"Address": "https://test-02.example.com/"
}
}
}
}
}
}
The reverse proxy functionality of the API Gateway is implemented using YARP.
The ReverseProxy
section in appsettings.json
is related to the reverse proxy functionality. The configuration is created by the product installer and maintained by the Server Configurator.
"ReverseProxy": {
"Routes": {
"well-known": {
"ClusterId": "managementserver",
"Match": {
"Path": "/.well-known/{**remainder}"
},
"Transforms": [
{
"PathPattern": "/ManagementServer/.well-known/{**remainder}"
}
]
},
"rest-api": {
"ClusterId": "managementserver",
"Match": {
"Path": "/rest/v1/{**remainder}"
},
"Transforms": [
{
"PathPattern": "/ManagementServer/Rest/{**remainder}"
}
]
},
"alarm-definitions-rest-api": {
"ClusterId": "managementserver",
"Match": {
"Path": "/rest/v1/alarmDefinitions/{**remainder}"
},
"Transforms": [
{
"PathPattern": "/ManagementServer/Rest/alarmDefinitions/{**remainder}"
}
]
},
"events-rest-api": {
"ClusterId": "eventserver",
"Match": {
"Path": "/rest/v1/events/{**remainder}"
},
"Transforms": [
{
"PathPattern": "/rest/events/v1/events/{**remainder}"
}
]
},
"alarms-rest-api": {
"ClusterId": "eventserver",
"Match": {
"Path": "/rest/v1/{resource:regex(^alarm.*)}/{**remainder}"
},
"Transforms": [
{
"PathPattern": "/rest/alarms/v1/{resource}/{**remainder}"
}
]
},
"ws-messages": {
"ClusterId": "eventserver",
"Match": {
"Path": "/ws/messages/v1/{**remainder}"
},
"Transforms": [
{
"PathPattern": "/ws/messages/v1/{**remainder}"
}
]
},
"ws-events": {
"ClusterId": "eventserver",
"Match": {
"Path": "/ws/events/v1/{**remainder}"
},
"Transforms": [
{
"PathPattern": "/ws/events/v1/{**remainder}"
}
]
},
"idp": {
"ClusterId": "managementserver",
"Match": {
"Path": "/IDP/{**remainder}"
},
"Transforms": [
{
"PathPattern": "/IDP/{**remainder}"
}
]
},
"share": {
"ClusterId": "managementserver",
"Match": {
"Path": "/share/{**remainder}"
},
"Transforms": [
{
"PathPattern": "/share/{**remainder}"
},
{
"X-Forwarded": "Append",
"Prefix": "Off"
},
{
"RequestHeader": "X-Forwarded-Prefix",
"Append": "/api/share"
}
]
}
},
"Clusters": {
"managementserver": {
"Destinations": {
"hostname": {
"Address": "https://test-02.example.com/"
}
}
}
}
}
For more information about YARP, please refer to YARP: Yet Another Reverse Proxy.
The API Gateway can be configured to support Cross-Origin Resource Sharing (CORS). The following response headers are supported:
CORS is disabled by default. You enable and configure CORS support by creating and editing appsettings.Production.json
.
Create appsettings.Production.json
(if not already created).
Enable and configure CORS response headers similar to this:
{
"CORS": {
"Enabled": true,
"Access-Control-Allow-Origin": "yourdomain1.com,yourdomain2.com",
"Access-Control-Allow-Headers": "Content-Type",
"Access-Control-Allow-Methods": "*"
}
}
Restart the IIS, or at least recycle VideoOS ApiGateway AppPool
.
Only required response headers should be defined. Each response header can have multiple values, provided as a list of comma-separated values.
In a production system, always specify the
Access-Control-Allow-Origin
value with explicit origins. Never use wildcard (*) or null in your origin as this can put the security of your system at risk.
For development and test purposes, you can use a very permissive policy:
{
"CORS": {
"Enabled": true,
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Headers": "*",
"Access-Control-Allow-Methods": "*"
}
}
This will allow calls from any origin, including a local file system, to the API Gateway.
For more information about CORS, please refer to Cross-Origin Resource Sharing (CORS)
WebRTC is a peer-to-peer protocol for streaming data, such as video.
To help establish a connection through NATs, WebRTC uses STUN (Session Traversal Utilities for NAT) and/or TURN (Traversal Using Relays around NAT) servers.
A STUN server is used to discover the public IP address and port number of a device behind a NAT.
A TURN server is used to relay traffic between peers when a direct connection is impossible due to firewall or NAT restrictions. TURN servers can also act as STUN servers.
No default STUN or TURN server URLs are configured API Gateway-side.
To specify STUN and/or TURN servers:
Create appsettings.Production.json
(if not already created).
Add a WebRTC object and add STUN and TURN server URLs, for example:
{
"WebRTC": {
"iceServers": [
{ "url": "stun:mystun.zyx:3478"},
{ "url": "turn:myturn.zyx:5349"}
]
}
}
Restart the IIS, or at least recycle VideoOS ApiGateway AppPool
.
For more information about WebRTC, please refer to WebRTC API and the WebRTC sample documentation at ProtocolSamples/WebRTC_JavaScript
The API Gateway uses NLog for logging.
Logging is configured in two places:
appsettings.json
and appsettings.Production.json
: Log levelsnlog.config
: Log layout, target, etc.This part of appsettings.json
is related to logging:
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information",
"Yarp": "Warning"
}
To include YARP routing log messages, add a log level setting in appsettings.production.json
for Yarp
, for example, Information
:
Create appsettings.Production.json (if not already created).
Add the configuration that you want to override, for example:
{
"Logging": {
"LogLevel": {
"Yarp": "Information"
}
}
}
Restart the IIS, or at least recycle VideoOS ApiGateway AppPool
.
This is the default NLog configuration file:
<?xml version="1.0" encoding="utf-8"?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
autoReload="true"
internalLogLevel="Warn"
internalLogFile="internal-nlog.txt">
<variable
name="logDirectory"
value="C:\ProgramData\Milestone\ApiGateway\Logs" />
<variable
name="archiveDirectory"
value="${var:logDirectory}\Archive" />
<variable
name="defaultLayout"
value="${date:format=yyyy-MM-dd HH\:mm\:ss.fffzzz} [${threadid:padding=6}] ${level:uppercase=true:padding=-10} - ${message} ${exception:format=tostring}" />
<targets>
<target
name="logfile"
xsi:type="File"
fileName="${var:logDirectory}\gateway.log"
archiveFileName="${var:archiveDirectory}\gateway-{####}.log"
archiveNumbering="Rolling"
maxArchiveFiles="20"
archiveEvery="Day"
archiveAboveSize="1000000"
archiveOldFileOnStartup="true"
createDirs="true"
layout="${var:defaultLayout}" />
</targets>
<rules>
<logger name="*" minlevel="Debug" writeTo="logfile" />
</rules>
</nlog>
For more information about NLog configuration, please refer to NLog Configuration options.
The API Gateway exposes a list of relevant server and API Gateway URIs at this URI:
/api/.well-known/uris
RESTful APIs are exposed at this root entry point:
/api/rest/v1
WebSocket APIs are exposed at these root entry points:
/api/ws/alarms/v1
/api/ws/events/v1
/api/ws/messages/v1
A complete request URI includes scheme, hostname, root entry point, endpoint route, and optionally query parameters, for example:
https://test-01.example.com/api/rest/v1/recordingservers/b1c84b2c-47a9-48aa-b7d5-ee43167b30da?resources
In this document, the https://test-01.example.com/api/rest/v1
part is omitted from request URIs. Only endpoint and query parameters are included:
/recordingservers/b1c84b2c-47a9-48aa-b7d5-ee43167b30da?resources
A complete dump of a simple request and response might look like this:
GET /api/rest/v1/sites HTTP/1.1
Authorization: Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6IjBhYWI3ZGU2YzExN . . . MRfqBFqhvkoOMndXAkQnpPX5NdXQiS5Q
User-Agent: PostmanRuntime/7.29.0
Accept: */*
Cache-Control: no-cache
Postman-Token: bdb5ef08-659c-45df-8a66-98f94d0e286d
Host: test-01.example.com
Accept-Encoding: gzip, deflate, br
Connection: keep-alive
HTTP/1.1 200 OK
Cache-Control: no-cache
Pragma: no-cache
Content-Length: 656
Content-Type: application/json; charset=utf-8
Expires: -1
Server: Microsoft-IIS/10.0
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
X-Frame-Options: SAMEORIGIN
X-Powered-By: ASP.NET
Date: Wed, 23 Feb 2022 09:28:58 GMT
{ "array" : [ { "displayName" : "TEST-01", "id" : "c4de19a0-d148-4858-8f55-2a3c4875638d", "name" : "TEST-01", "description" : "", "lastModified" : "2022-02-23T09:11:02.9100000Z", "timeZone" : "FLE Standard Time", "computerName" : "TEST-01", "domainName" : "example.com", "lastStatusHandshake" : "2022-02-23T09:11:02.9100000Z", "physicalMemory" : 0, "platform" : "[Not Available]", "processors" : 0, "serviceAccount" : "S-1-5-20", "synchronizationStatus" : 0, "masterSiteAddress" : "", "version" : "22.1.0.1", "relations" : { "self" : { "type" : "sites", "id" : "c4de19a0-d148-4858-8f55-2a3c4875638d" } } } ] }
The syntax examples in this document include only the most relevant data:
The request includes only the request line and the request body in case of most POST
, PUT
, and PATCH
requests.
GET /api/rest/v1/sites HTTP/1.1
The response includes the HTTP status code if relevant, and the response body might be abbreviated:
HTTP/1.1 200 OK
{
"array": [
{
"displayName": "TEST-01",
"id": "c4de19a0-d148-4858-8f55-2a3c4875638d",
"name": "TEST-01",
// more properties
"relations": {
"self": {
"type": "sites",
"id": "c4de19a0-d148-4858-8f55-2a3c4875638d"
}
}
}
]
}
The RESTful API is designed following these guidelines:
data
, array
, result
, error
, both data
and resources
, both data
and definitions
, both error
and params
, etc.Any VMS item that can be read and/or updated independently is considered an object, and each VMS item has a specific URI that identifies it.
For objects within objects, the resource URI contains the object type and ID of its parent. Also, each object contains a relations
element with relevant links to itself, parent, or related objects.
The top-level object name is data
for the requested data or array
if the requested data is an array of data.
For example, the collection of hardware
objects is represented as an array
:
GET /hardware
{
"array": [
{
"displayName": "AXIS P5522 PTZ Dome Network Camera (10.100.50.129)",
"enabled": "True",
"id": "149d6f4d-4f71-4ced-98b4-8b1e914578db",
"name": "AXIS P5522 PTZ Dome Network Camera (10.100.50.129)",
"description": "",
"address": "http://10.100.50.129/",
"userName": "root",
"model": "AXIS P5522 PTZ Dome Network Camera",
"lastModified": "2022-01-19T07:58:28.3170000Z",
"hardwareDriverPath": {
"type": "hardwareDrivers",
"id": "316f4995-decd-4fa9-9877-0833b369c053"
},
"relations": {
"parent": {
"type": "recordingServers",
"id": "b1c84b2c-47a9-48aa-b7d5-ee43167b30da"
},
"self": {
"type": "hardware",
"id": "149d6f4d-4f71-4ced-98b4-8b1e914578db"
}
}
},
{
"displayName": "AXIS M1144-L Network Camera (10.100.50.187)",
"enabled": "True",
"id": "4d7a1e6a-b538-482f-9ce0-e44048cb5955",
"name": "AXIS M1144-L Network Camera (10.100.50.187)",
"description": "",
"address": "http://10.100.50.187/",
"userName": "root",
"model": "AXIS M1144-L Network Camera",
"lastModified": "2022-01-19T07:58:29.6130000Z",
"hardwareDriverPath": {
"type": "hardwareDrivers",
"id": "316f4995-decd-4fa9-9877-0833b369c053"
},
"relations": {
"parent": {
"type": "recordingServers",
"id": "b1c84b2c-47a9-48aa-b7d5-ee43167b30da"
},
"self": {
"type": "hardware",
"id": "4d7a1e6a-b538-482f-9ce0-e44048cb5955"
}
}
},
// more hardware objects related to this recording server
]
}
A single object is addressed by its type and ID:
GET /hardware/149d6f4d-4f71-4ced-98b4-8b1e914578db
{
"data": {
"displayName": "AXIS P5522 PTZ Dome Network Camera (10.100.50.129)",
"enabled": "True",
"id": "149d6f4d-4f71-4ced-98b4-8b1e914578db",
"name": "AXIS P5522 PTZ Dome Network Camera (10.100.50.129)",
"description": "",
"address": "http://10.100.50.129/",
"userName": "root",
"model": "AXIS P5522 PTZ Dome Network Camera",
"lastModified": "2022-01-19T07:58:28.3170000Z",
"hardwareDriverPath": {
"type": "hardwareDrivers",
"id": "316f4995-decd-4fa9-9877-0833b369c053"
},
"relations": {
"parent": {
"type": "recordingServers",
"id": "b1c84b2c-47a9-48aa-b7d5-ee43167b30da"
},
"self": {
"type": "hardware",
"id": "149d6f4d-4f71-4ced-98b4-8b1e914578db"
}
}
}
}
The object that represents the configuration of the management server itself has this URI:
/sites
Almost any other object will have a format like these:
/recordingServers/{id}
/hardware/{id}
/cameras/{id}
For objects that are parented by another object, the resource URI grows to:
/recordingServers/{id}/hardwareDrivers/{id2}
/cameras/{id}/ptzPresets/{id2}
There are never more than two levels in resource URIs. A resource with only one instance will re-use the ID of its parent. For example, there is only one streams
collection for each camera, and the camera ID is re-used for the streams related to the camera:
GET /streams/{camera-id}
See also Operations on objects
The following query parameters can be added to a request URI:
disabled
: include disabled objectsresources
: get a list of child resources to an objecttask
: specify a task to invoke like this: ?task={someTaskId}
tasks
: get a list of valid tasks for an objectnoData
: suppress data in the responsedefinitions
: get definition of object (including task) parameterslanguage
: get all translations for a given languageThe language
parameter is only relevant for the translations
resource. The other parameters can be combined.
By default, only enabled objects will be included in the response.
To include all disabled objects in the response, include the query parameter disabled
like this:
GET /cameras?disabled
To find out which resource types are available for a specific object, include the query parameter resources
like this:
GET /recordingServers/{id}?resources
The response body will contain an array of all the child resource types available for the requested resource:
{
"data": {
// properties for this recording server object
},
"resources": [
{
"type": "hardware",
"displayName": "Hardware"
},
{
"type": "hardwareDrivers",
"displayName": "Drivers"
},
{
"type": "storages",
"displayName": "Storages"
},
{
"type": "recordingServerMulticasts",
"displayName": "Multicasts"
},
{
"type": "recordingServerFailovers",
"displayName": "Failover"
}
]
}
To get an array of child objects, append the resource type
value to the specific parent resource route like this:
GET /recordingServers/{id}/storages
For objects that do not have any child resources, the response will contain an empty array:
{
"resources": []
}
To get an array of tasks available for a given resource, use the query parameter tasks
like this:
GET /hardware/{id}?tasks
{
"data": {
// properties for this hardware object
},
"tasks": [
{
"id": "ReadPasswordHardware",
"displayName": "Read hardware password"
},
{
"id": "ChangePasswordHardware",
"displayName": "Change hardware password"
},
{
"id": "UpdateFirmwareHardware",
"displayName": "Update firmware"
},
{
"id": "MoveHardware",
"displayName": "Move hardware"
},
{
"id": "UpdateHardware",
"displayName": "Update hardware"
}
]
}
The task id
can then be used to invoke a task.
See also task parameter and Tasks
To invoke a task on a resource, specify the task as the value of the query parameter task
in a POST
request like this:
POST /hardware/{id}?task=MoveHardware
Provide parameters to the request in the request body. If the body does not contain the required parameters, the response will contain an error
object and a params
object listing the required parameters:
{
"error": {
"httpCode": 400,
"details": [
{
"errorText": "Bad request: parameters missing"
}
]
},
"params": {
"destinationRecordingServer": ""
}
}
To understand the parameters in detail, add the query parameter definitions
to either a GET
or POST
query like this:
POST /hardware/{id}?task=MoveHardware&definitions
The response will include a list of definitions for each of the parameters like this:
{
"error": {
"httpCode": 400,
"details": [
{
"errorText": "Bad request: parameters missing"
}
]
},
"params": {
"destinationRecordingServer": ""
},
"definitions": {
"displayName": {
"canSet": "false",
"translationId": "PropertyDisplayName"
},
"destinationRecordingServer": {
"canSet": "true",
"options": [
{
"value": "recordingServers/c9cef804-e600-4b4b-b5f9-be246bb49133",
"displayName": "My recording server"
},
{
"value": "recordingServers/b1c84b2c-47a9-48aa-b7d5-ee43167b30da",
"displayName": "My other recording server"
}
],
"valueType": "enum",
"translationId": "PropertyHardwareDestinationRecorder",
"toolTipTranslationId": "PropertyHardwareDestinationRecorderToolTip"
}
}
}
Add the required parameter value to the request body, and submit the request again:
POST /hardware/{id}?task=MoveHardware
{
"destinationRecordingServer": "recordingServers/c9cef804-e600-4b4b-b5f9-be246bb49133"
}
See also Task invocation
Add the query parameter noData
to suppress data
content in the response. Can be used when other query parameters are present, e.g. resources
or tasks
.
The translations
collection represents the translation of display names for parameters. Add the language
query parameter to specify the language:
GET /translations?language=tr-TR
The response body contains an array of translated display names for the specified language:
{
"array": [
{
"id": "PropertyLicenseActivationAutomatic",
"text": "Enable automatic license activation"
},
{
"id": "PropertyCameraGroupPaths",
"text": "Camera group paths"
},
// and 6000 more entries here
]
}
Note: Translations are not yet supported, and it will return English for now.
Add the query parameter definitions
to request the definition for each property of an object. Most of the properties use enumerations or numbers within a defined range.
The following example is from the hardwareDriverSettings
resource on an Axis hardware:
GET /hardwareDriverSettings/3954fd12-a071-4464-89d3-d8147ff8a4c5?definitions
{
"data": {
"displayName": "Settings",
"HardwareDriverSettings": {
"displayName": "General",
"detectedModelName": "AXIS Q1647 Network Camera",
// ...
"bandwidth": "Unlimited",
// ...
"brightness": "50",
// ...
"whiteBalance": "Fixed indoor",
// ...
"auxUse": "Wiper",
// ...
}
},
"definitions": {
"HardwareDriverSettings": {
"detectedModelName": {
"canSet": "false",
"translationId": "a57d4e50-4158-4d04-955a-3141653e44dc"
},
// ...
"bandwidth": {
"canSet": "true",
"valueType": "enum",
"options": {
"Unlimited": "Unlimited",
"4 Mbit": "4 Mbit",
"2 Mbit": "2 Mbit",
"1 Mbit": "1 Mbit",
"768 Kbit": "768 Kbit",
"512 Kbit": "512 Kbit",
"256 Kbit": "256 Kbit",
"128 Kbit": "128 Kbit",
"64 Kbit": "64 Kbit"
},
"translationId": "3379b746-444c-4fdc-8447-8e7215cdb1e7"
},
"audioEncoding": {
"canSet": "true",
"valueType": "enum",
"options": {
"G711": "G.711",
"G726-32": "G.726 32 kbit/s",
"G726-24": "G.726 24 kbit/s",
"AAC": "AAC"
},
"translationId": "1d0b927a-ac2d-4fba-98bc-fcc05c2dbd4a"
},
// ...
"brightness": {
"canSet": "true",
"valueType": "slider",
"MinValue": "0",
"MaxValue": "100",
"StepValue": "1",
"translationId": "96cbdf37-4ffc-46d8-89d0-d24ece0b4fb7"
},
// ...
"auxUse": {
"canSet": "true",
"valueType": "enum",
"options": {
"PTZ": "PTZ Movement",
"Wiper": "Wiper/Washer Control"
},
"translationId": "b3ebed61-8e59-45f5-963d-1f271c1e5a0d"
},
// ...
}
}
}
In this example, the property auxUse
has a current value of Wiper
. In the definitions section, the auxUse
property is defined as an enumeration with two values: PTZ
or Wiper
.
Each property is defined in terms of:
canSet
– boolean, true
when this property can be changedvalueType
– enum
, int
, double
, slider
, bool
, string
, dateTime
, date
, time
, path
, pathList
, progress
, list
, array
options
– used for enums to list the set of valuestranslationId
– id for display name in the translation arrayminValue
– lowest valid value for an int
, double
or slider
maxValue
– highest valid value for an int
, double
or slider
stepValue
– minimum interval on a slider
, e.g. 5
would mean that 0
, 5
, 10
, 15
etc are validYou can add match filters to a resource URI to limit the amount of data returned.
For example, to return only hardware of specific model, include a filter like this:
GET /hardware?model='AXIS Q1725'
When no filter operator is included, the property value must match exactly.
To exclude specific objects, use the notEquals
operator like this:
GET /hardware?model=notEquals:'AXIS Q1725'
To evaluate numerical and date or time property values, use relational filter operators like this:
GET /hardware?lastModified=gt:'2021-11-25'
To match part of a string property value, use match filter operators like this:
GET /hardware?model=contains:'axis'
Available filter operators:
lt
less thangt
greater thannotEquals
not equalsstartsWith
string starts withcontains
string that containsTo limit the amount of data returned, add these query parameters to the resource URI:
page=<number>
size=<number>
Pagination is available for collection resource URIs. For example, to get the first 10 hardware objects:
GET /hardware?page=0&size=10
For basic configuration objects like hardware
and cameras
, the HTTP methods GET
, PUT
, DELETE
, PATCH
, and POST
are used to manage these objects. Use of the POST
may not be possible for some classic VMS objects, as they are created on the server side during discovery or registration.
For some objects, an entire set of objects are configured in one request – e.g. the GET
will return an array of objects, and the PUT
will need to provide a similar set of objects, e.g. when configuring usage of streams. In these cases, the JSON body will contain an array of elements.
For those resources where just one instance exists, and where there is no specific ID, the ID of the parent is re-used.
Here's a few examples related to cameras. A camera is identified as /cameras/{camera-id}
, and these camera child resources re-use the parent ID:
/streams/{camera-id}
/motionDetections/{camera-id}
/settings/{camera-id}
These collection objects always exist, the DELETE
HTTP request is not supported, and POST
is not supported for motionDetections
and settings
.
As a streams
object is actually an array of streams, these must be updated together. The POST
method is supported for adding/removing a single stream definition with task=AddStream
and task=RemoveStream
, but the GET
, PATCH
, and PUT
methods operate on the entire array of stream definitions in /streams/{camera-id}
By contrast, multiple instances of these camera objects can exist:
/cameras/{camera-id}/patrollingProfiles/{profile-id}
/cameras/{camera-id}/ptzPresets/{preset-id}
The POST
and DELETE
methods are supported on the respective resource IDs.
To create a new object, POST
the required object properties to the appropriate collection URI like this:
POST /analyticsEvents
{
"name": "TodaysEvent"
}
If the request is succesful, the analyticsEvent
is created server side, and the response is a 201 OK
. The response body contains the ID of the new object:
HTTP/1.1 201 Created
{
"result": {
"id": "BCF7FE2B-D124-4639-8390-55E90B1C8B6F",
"name": "TodaysEvent",
"lastModified": "2021-11-30T08:42:57.6241547Z",
"state": "Success",
"path": {
"type": "analyticsEvent",
"id": "bcf7fe2b-d124-4639-8390-55e90b1c8b6f"
}
}
}
Note that the response body contains a
result
object rather than adata
orarray
object.
To retrieve a single hardware configuration:
GET /hardware/{id}
To retrieve all hardware on a recording server:
GET /recordingServers/{id}/hardware
To retrieve up to 100 of all enabled cameras, using paging:
GET /cameras?page=0&size=100
To retrieve up to 100 of all enabled and disabled cameras, using paging:
GET /cameras?page=0&size=100&disabled
To update all updatable properties of an object, submit a PUT
request including (at least) all updatable properties in the request body:
PUT /hardware/{id}
{
// all updateable properties
}
To update some updatable properties of an existing object, submit a PATCH
request, including just the properties to update in the request body:
PATCH /hardware/{id}
{
"name": "TheNewHardwareName"
}
To delete an object, submit a DELETE
request with no request body:
DELETE /analyticsEvents/{id}
Note: Some objects cannot be deleted
Tasks are used in two general areas:
When retrieving available tasks for a recordingServers
object, the response looks like this:
GET /recordingServers/{id}?tasks
{
"data": {
// properties for this recording server
},
"tasks": [
{
"id": "AddHardware",
"displayName": "Add new hardware"
},
{
"id": "GetOtherWithMediaOnRecorder",
"displayName": "Get devices with media on recording server"
},
{
"id": "HardwareScan",
"displayName": "Detect hardware driver"
},
{
"id": "HardwareScanExpress",
"displayName": "Detect hardware"
}
]
}
The response above contains an array of tasks available for the object, here the recording server.
To create a task, the task id is added as a query parameter to the object URI like this:
POST /recordingServers/{id}?task=HardwareScan
Parameters are supplied in the body of the request.
If no parameters are given, an error response will contain the minimal JSON content needed. For complex wizard-like editing/validation/creation of, for example, rules and alarmDefinitions
, there will be a flow of JSON content going back and forth until the entire content can be accepted.
A typical flow will look like this:
POST /recordingServers/{id}?task=HardwareScan
POST /recordingServers/{id}?task=HardwareScan
with body of 3 parameters/tasks/{id}
GET
the hardware and update and enable itThis flow allows you to discover what parameters are used for a given task, and it will also provide a way to be forward-compatible when new parameters are needed.
Use the POST
HTTP method for all task invocations.
If the client only submitted this request:
POST /recordingServers/{id}?task=HardwareScan
The response will be a list of the properties to be filled in:
{
"params" : {
"recordingServerPath" : "recordingServers/<guid>",
"hardwareAddress" : "",
"userName" : "",
"password" : "",
"hardwareDriverPath" : "hardwareDrivers/<guid>"
},
}
For some tasks, the response will contain relevant default values or newly added properties.
The client can then fill in the property values and re-submit the request.
The response to invoking a task will be an HTTP response of 200 Success
, with a JSON body containing a task
. When a new object is created, objectId
is something like hardware/{id}
for the newly added hardware.
For server-side processing that takes some time, a task request can queue the request and return a task identifier.
For example, when using the AddHardware
task, it could look like this:
POST /recordingServers/{id}?task=AddHardware
{
"hardwareAddress": "10.10.16.90",
"hardwareDriverPath": {
"type": "hardwareDrivers",
"id": "55f88254-dc3d-4735-acc6-73f21cca2402"
},
"userName": "root",
"password": "pass",
"customData": ""
}
If the task is succesfully created, the HTTP response code is 201 Created
:
HTTP/1.1 201 Created
{
"result": {
"hardwareAddress": "10.10.16.90",
"hardwareDriverPath": {
"type": "hardwareDrivers",
"id": "55f88254-dc3d-4735-acc6-73f21cca2402"
},
"userName": "root",
"password": "pass",
"customData": "",
"state": "Idle",
"path": {
"type": "tasks",
"id": "33"
}
}
}
To get an array of current tasks, submit a request like this:
GET /tasks
The client can periodically check for the progress and success of a specific task by submitting a request on the provided /tasks/{id}
path:
GET /tasks/33
Not all properties in the response body are present at all times. The value of the progress
property is an estimated percentage of task done. When progress
is 100
, the state
property will contain Success
or Error
, and the task has completed. If state
is Error
, then errorCode
and errorText
will contain values.
Here's an example of an error response:
{
"data" : {
"displayName": "Adding hardware",
"progress": 100,
"errorCode": 60277,
"errorText": "VMO60277: Could not add the hardware.\\n\\nUnable to connect to the recording server while setting up the hardware.",
"state": "Error",
"relations": {
"parent": {
"type": "sites",
"id": "c9cef804-e600-4b4b-b5f9-be246bb49133"
},
"self": {
"type": "tasks",
"id": "33"
}
}
}
}
The relations
property may contain the resource link to the object that was the result of the entire task operation, such as added hardware.
After a task has completed, it should be cleaned up.
Task objects have a TaskCleanup
task:
GET tasks/33?tasks&noData
{
"tasks": [
{
"id": "TaskCleanup",
"displayName": "Finish"
}
]
}
To clean up the task result, submit this request:
POST /tasks/33?task=TaskCleanup
And the response will be:
{
"result": {
"state": "Success"
}
}
When building a request URI, use the syntax rules defined in RFC 3986 sections 3.3 and 3.4.
In short, percent-encode the subdelim characters !$&'()\*+,;=
.
Request and response body content consists of a JSON object that complies with the syntax rules defined in Introducing JSON, ECMA-404, or RFC 8259.
In short:
"
. Backslash-escape a double quote within a string like this: \"
..
(dot) for decimal point.yyyy-MM-ddTHH:mm:ssZ
, or
yyyy-MM-ddTHH:mm:ss.fffZ
when microseconds are relevant."2020-04-02T08:29:58.172Z"
Please note that error response samples are generic, that is, not specific for each request.
200 OK
– Success: the request completed correctly201 Created
– Success: an object was created400 Bad Request
401 Unauthorized
403 Forbidden
404 Not Found
500 Internal Server Error
If a request resource URI or body content is incorrect, the response body will contain the details of the error. Errors could be like:
Basic Owner Information
id required | string <guid> Example: f0ad19f5-3d26-4fde-a31f-92e8195f480a Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "displayName": "Basic Information",
- "relations": {
- "self": {
- "type": "owner",
- "id": "f0ad19f5-3d26-4fde-a31f-92e8195f480a"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Basic Owner Information
id required | string <guid> Example: f0ad19f5-3d26-4fde-a31f-92e8195f480a Id of the object |
object |
{- "relations": {
- "self": {
- "type": "owner",
- "id": "f0ad19f5-3d26-4fde-a31f-92e8195f480a"
}
}
}
{- "data": {
- "displayName": "Basic Information",
- "relations": {
- "self": {
- "type": "owner",
- "id": "f0ad19f5-3d26-4fde-a31f-92e8195f480a"
}
}
}
}
Basic Owner Information
id required | string <guid> Example: f0ad19f5-3d26-4fde-a31f-92e8195f480a Id of the object |
object |
{- "relations": {
- "self": {
- "type": "owner",
- "id": "f0ad19f5-3d26-4fde-a31f-92e8195f480a"
}
}
}
{- "data": {
- "displayName": "Basic Information",
- "relations": {
- "self": {
- "type": "owner",
- "id": "f0ad19f5-3d26-4fde-a31f-92e8195f480a"
}
}
}
}
Basic Owner Information
id required | string <guid> Example: f0ad19f5-3d26-4fde-a31f-92e8195f480a Id of the object |
task required | string Example: task=RemoveBasicOwnerInfo task=AddBasicOwnerInfo, or task=RemoveBasicOwnerInfo AddBasicOwnerInfo - Add basic owner information RemoveBasicOwnerInfo - Remove basic owner tag |
tagType | string Select tag type |
tagValue | string Value of selected tag. This property can contain any of the BasicInformation fields. The DisplayName contains the readable name, like Address, while the Key is prefixed with the group name, e.g. address.Address or admin.Address. |
{- "tagType": "string",
- "tagValue": "string"
}
{- "result": {
- "displayName": "Basic Information",
- "tagType": "address.Name",
- "tagValue": "string"
}
}
{- "array": [
- {
- "aviGenerationConfigData": "string",
- "aviGenerationDataRate": 97,
- "aviGenerationFlags": 0,
- "aviGenerationHandler": 1129730893,
- "aviGenerationKeyFrames": 10,
- "aviGenerationQuality": 75,
- "aviGenerationSelected": false,
- "displayName": "Microsoft Video 1",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "relations": {
- "self": {
- "type": "compressors",
- "id": "a4a1d500-36b9-46d5-965e-7adf1ff1897e"
}
}
}
]
}
Get specific object of compressors
id required | string <guid> Example: a4a1d500-36b9-46d5-965e-7adf1ff1897e Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "aviGenerationConfigData": "string",
- "aviGenerationDataRate": 97,
- "aviGenerationFlags": 0,
- "aviGenerationHandler": 1129730893,
- "aviGenerationKeyFrames": 10,
- "aviGenerationQuality": 75,
- "aviGenerationSelected": false,
- "displayName": "Microsoft Video 1",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "relations": {
- "self": {
- "type": "compressors",
- "id": "a4a1d500-36b9-46d5-965e-7adf1ff1897e"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Update all fields on compressors
id required | string <guid> Example: a4a1d500-36b9-46d5-965e-7adf1ff1897e Id of the object |
aviGenerationDataRate | integer Data rate. KB/second |
aviGenerationKeyFrames | integer Key frames. Number of frames between key frames, i.e. GOP size, default is 10 |
aviGenerationQuality | integer Quality. Video quality in percent, value between 1 and 100, default is 75 |
aviGenerationSelected | boolean Selected. Selected to be used by Mail Notifications |
object |
{- "aviGenerationDataRate": 97,
- "aviGenerationKeyFrames": 10,
- "aviGenerationQuality": 75,
- "aviGenerationSelected": false,
- "relations": {
- "self": {
- "type": "compressors",
- "id": "a4a1d500-36b9-46d5-965e-7adf1ff1897e"
}
}
}
{- "data": {
- "aviGenerationConfigData": "string",
- "aviGenerationDataRate": 97,
- "aviGenerationFlags": 0,
- "aviGenerationHandler": 1129730893,
- "aviGenerationKeyFrames": 10,
- "aviGenerationQuality": 75,
- "aviGenerationSelected": false,
- "displayName": "Microsoft Video 1",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "relations": {
- "self": {
- "type": "compressors",
- "id": "a4a1d500-36b9-46d5-965e-7adf1ff1897e"
}
}
}
}
Update provided fields on compressors
id required | string <guid> Example: a4a1d500-36b9-46d5-965e-7adf1ff1897e Id of the object |
aviGenerationDataRate | integer Data rate. KB/second |
aviGenerationKeyFrames | integer Key frames. Number of frames between key frames, i.e. GOP size, default is 10 |
aviGenerationQuality | integer Quality. Video quality in percent, value between 1 and 100, default is 75 |
aviGenerationSelected | boolean Selected. Selected to be used by Mail Notifications |
object |
{- "aviGenerationDataRate": 97,
- "aviGenerationKeyFrames": 10,
- "aviGenerationQuality": 75,
- "aviGenerationSelected": false,
- "relations": {
- "self": {
- "type": "compressors",
- "id": "a4a1d500-36b9-46d5-965e-7adf1ff1897e"
}
}
}
{- "data": {
- "aviGenerationConfigData": "string",
- "aviGenerationDataRate": 97,
- "aviGenerationFlags": 0,
- "aviGenerationHandler": 1129730893,
- "aviGenerationKeyFrames": 10,
- "aviGenerationQuality": 75,
- "aviGenerationSelected": false,
- "displayName": "Microsoft Video 1",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "relations": {
- "self": {
- "type": "compressors",
- "id": "a4a1d500-36b9-46d5-965e-7adf1ff1897e"
}
}
}
}
{- "array": [
- {
- "activationAutomatic": false,
- "careId": "string",
- "careLevel": "Premium",
- "displayName": "XProtect Corporate 2024 R2",
- "licenseDetails": [
- {
- "activated": "13",
- "changesWithoutActivation": "0 out of 0",
- "displayName": "Device License",
- "firstGraceExpirationDate": "Unrestricted",
- "graceExpired": "0",
- "inGrace": 0,
- "licenseType": "Device License",
- "note": "string",
- "notLicensed": "0",
- "pluginId": "00000000-0000-0000-0000-000000000000"
}
], - "licenseInstalledProducts": [
- {
- "carePlus": "2029-07-02T14:01:00.0000000Z",
- "carePremium": "2029-07-02T14:01:28.0000000Z",
- "displayName": "XProtect Corporate 2024 R2",
- "expirationDate": "Unrestricted",
- "pluginId": "00000000-0000-0000-0000-000000000000",
- "productDisplayName": "XProtect Corporate 2024 R2",
- "slc": "M01-C01-242-01-6C42E9"
}
], - "licenseOverviewAll": [
- {
- "activated": "13 out of 5000",
- "displayName": "Device License",
- "licenseType": "Device License",
- "pluginId": "00000000-0000-0000-0000-000000000000"
}
], - "productionEnvironment": "wtst",
- "sku": "XPCO",
- "slc": "M01-C01-242-01-6C42E9",
- "licenseProperties": [
- {
- "displayName": "SmartClientProfiles",
- "parameters": [
- {
- "key": "string",
- "value": "string"
}
]
}
], - "relations": {
- "self": {
- "type": "licenseInformations",
- "id": "f0e83649-e1aa-4424-a5be-cd507d041cd6"
}
}
}
]
}
License information
id required | string <guid> Example: f0e83649-e1aa-4424-a5be-cd507d041cd6 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "activationAutomatic": false,
- "careId": "string",
- "careLevel": "Premium",
- "displayName": "XProtect Corporate 2024 R2",
- "licenseDetails": [
- {
- "activated": "13",
- "changesWithoutActivation": "0 out of 0",
- "displayName": "Device License",
- "firstGraceExpirationDate": "Unrestricted",
- "graceExpired": "0",
- "inGrace": 0,
- "licenseType": "Device License",
- "note": "string",
- "notLicensed": "0",
- "pluginId": "00000000-0000-0000-0000-000000000000"
}
], - "licenseInstalledProducts": [
- {
- "carePlus": "2029-07-02T14:01:00.0000000Z",
- "carePremium": "2029-07-02T14:01:28.0000000Z",
- "displayName": "XProtect Corporate 2024 R2",
- "expirationDate": "Unrestricted",
- "pluginId": "00000000-0000-0000-0000-000000000000",
- "productDisplayName": "XProtect Corporate 2024 R2",
- "slc": "M01-C01-242-01-6C42E9"
}
], - "licenseOverviewAll": [
- {
- "activated": "13 out of 5000",
- "displayName": "Device License",
- "licenseType": "Device License",
- "pluginId": "00000000-0000-0000-0000-000000000000"
}
], - "productionEnvironment": "wtst",
- "sku": "XPCO",
- "slc": "M01-C01-242-01-6C42E9",
- "licenseProperties": [
- {
- "displayName": "SmartClientProfiles",
- "parameters": [
- {
- "key": "string",
- "value": "string"
}
]
}
], - "relations": {
- "self": {
- "type": "licenseInformations",
- "id": "f0e83649-e1aa-4424-a5be-cd507d041cd6"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
License information
id required | string <guid> Example: f0e83649-e1aa-4424-a5be-cd507d041cd6 Id of the object |
Array of objects (licenseProperties) | |
object |
{- "licenseProperties": [
- { }
], - "relations": {
- "self": {
- "type": "licenseInformations",
- "id": "f0e83649-e1aa-4424-a5be-cd507d041cd6"
}
}
}
{- "data": {
- "activationAutomatic": false,
- "careId": "string",
- "careLevel": "Premium",
- "displayName": "XProtect Corporate 2024 R2",
- "licenseDetails": [
- {
- "activated": "13",
- "changesWithoutActivation": "0 out of 0",
- "displayName": "Device License",
- "firstGraceExpirationDate": "Unrestricted",
- "graceExpired": "0",
- "inGrace": 0,
- "licenseType": "Device License",
- "note": "string",
- "notLicensed": "0",
- "pluginId": "00000000-0000-0000-0000-000000000000"
}
], - "licenseInstalledProducts": [
- {
- "carePlus": "2029-07-02T14:01:00.0000000Z",
- "carePremium": "2029-07-02T14:01:28.0000000Z",
- "displayName": "XProtect Corporate 2024 R2",
- "expirationDate": "Unrestricted",
- "pluginId": "00000000-0000-0000-0000-000000000000",
- "productDisplayName": "XProtect Corporate 2024 R2",
- "slc": "M01-C01-242-01-6C42E9"
}
], - "licenseOverviewAll": [
- {
- "activated": "13 out of 5000",
- "displayName": "Device License",
- "licenseType": "Device License",
- "pluginId": "00000000-0000-0000-0000-000000000000"
}
], - "productionEnvironment": "wtst",
- "sku": "XPCO",
- "slc": "M01-C01-242-01-6C42E9",
- "licenseProperties": [
- {
- "displayName": "SmartClientProfiles",
- "parameters": [
- {
- "key": "string",
- "value": "string"
}
]
}
], - "relations": {
- "self": {
- "type": "licenseInformations",
- "id": "f0e83649-e1aa-4424-a5be-cd507d041cd6"
}
}
}
}
License information
id required | string <guid> Example: f0e83649-e1aa-4424-a5be-cd507d041cd6 Id of the object |
Array of objects (licenseProperties) | |
object |
{- "licenseProperties": [
- { }
], - "relations": {
- "self": {
- "type": "licenseInformations",
- "id": "f0e83649-e1aa-4424-a5be-cd507d041cd6"
}
}
}
{- "data": {
- "activationAutomatic": false,
- "careId": "string",
- "careLevel": "Premium",
- "displayName": "XProtect Corporate 2024 R2",
- "licenseDetails": [
- {
- "activated": "13",
- "changesWithoutActivation": "0 out of 0",
- "displayName": "Device License",
- "firstGraceExpirationDate": "Unrestricted",
- "graceExpired": "0",
- "inGrace": 0,
- "licenseType": "Device License",
- "note": "string",
- "notLicensed": "0",
- "pluginId": "00000000-0000-0000-0000-000000000000"
}
], - "licenseInstalledProducts": [
- {
- "carePlus": "2029-07-02T14:01:00.0000000Z",
- "carePremium": "2029-07-02T14:01:28.0000000Z",
- "displayName": "XProtect Corporate 2024 R2",
- "expirationDate": "Unrestricted",
- "pluginId": "00000000-0000-0000-0000-000000000000",
- "productDisplayName": "XProtect Corporate 2024 R2",
- "slc": "M01-C01-242-01-6C42E9"
}
], - "licenseOverviewAll": [
- {
- "activated": "13 out of 5000",
- "displayName": "Device License",
- "licenseType": "Device License",
- "pluginId": "00000000-0000-0000-0000-000000000000"
}
], - "productionEnvironment": "wtst",
- "sku": "XPCO",
- "slc": "M01-C01-242-01-6C42E9",
- "licenseProperties": [
- {
- "displayName": "SmartClientProfiles",
- "parameters": [
- {
- "key": "string",
- "value": "string"
}
]
}
], - "relations": {
- "self": {
- "type": "licenseInformations",
- "id": "f0e83649-e1aa-4424-a5be-cd507d041cd6"
}
}
}
}
License information
id required | string <guid> Example: f0e83649-e1aa-4424-a5be-cd507d041cd6 Id of the object |
task required | string Example: task=StopAutomaticLicenseActivation task=ActivateLicense, or task=RequestLicense, or task=ChangeLicense, or task=UpdateLicense, or task=StopAutomaticLicenseActivation ActivateLicense - Activate License RequestLicense - Request license for offline activation ChangeLicense - Change to a new license UpdateLicense - Update license |
activationAutomatic | boolean Enable automatic license activation |
password | string <password> Password |
userName | string User name |
{- "activationAutomatic": true,
- "password": "pa$$word",
- "userName": "string"
}
{- "result": {
- "activationAutomatic": false,
- "displayName": "XProtect Corporate 2024 R2",
- "password": "string",
- "userName": "string"
}
}
License information
id required | string <guid> Example: f0e83649-e1aa-4424-a5be-cd507d041cd6 Id of the licenseInformation object |
{- "array": [
- {
- "activated": "13",
- "changesWithoutActivation": "0 out of 0",
- "displayName": "Device License",
- "firstGraceExpirationDate": "Unrestricted",
- "graceExpired": "0",
- "inGrace": 0,
- "licenseType": "Device License",
- "note": "string",
- "notLicensed": "0",
- "pluginId": "00000000-0000-0000-0000-000000000000"
}
]
}
License information
id required | string <guid> Example: f0e83649-e1aa-4424-a5be-cd507d041cd6 Id of the licenseInformation object |
{- "array": [
- {
- "carePlus": "2029-07-02T14:01:00.0000000Z",
- "carePremium": "2029-07-02T14:01:28.0000000Z",
- "displayName": "XProtect Corporate 2024 R2",
- "expirationDate": "Unrestricted",
- "pluginId": "00000000-0000-0000-0000-000000000000",
- "productDisplayName": "XProtect Corporate 2024 R2",
- "slc": "M01-C01-242-01-6C42E9"
}
]
}
License information
id required | string <guid> Example: f0e83649-e1aa-4424-a5be-cd507d041cd6 Id of the licenseInformation object |
{- "array": [
- {
- "activated": "13 out of 5000",
- "displayName": "Device License",
- "licenseType": "Device License",
- "pluginId": "00000000-0000-0000-0000-000000000000"
}
]
}
External IDP. To include disabled items add ?disabled to the request.
disabled | boolean Add this parameter to have disabled items included |
{- "array": [
- {
- "callbackPath": "/signin-oidc",
- "clientId": "ms.idp",
- "clientSecret": "string",
- "clientSecretHasValue": true,
- "displayName": "TA External Provider",
- "enabled": true,
- "id": "cb707285-8180-49d3-89c9-2916186be755",
- "name": "TA External Provider",
- "promptForLogin": true,
- "registeredClaims": [
- {
- "caseSensitive": false,
- "displayName": "VMS role",
- "id": 1,
- "name": "vms_role",
- "relations": {
- "self": {
- "type": "registeredClaims",
- "id": "95206c2c-cf5f-46ca-9c64-4cb44b4e5a1e"
}, - "parent": {
- "type": "loginProviders",
- "id": "cb707285-8180-49d3-89c9-2916186be755"
}
}
}
], - "scopes": [
- "string"
], - "userNameClaimType": "string",
- "relations": {
- "self": {
- "type": "loginProviders",
- "id": "cb707285-8180-49d3-89c9-2916186be755"
}
}
}
]
}
External IDP
authority | string Authentication authority. Authentication authority for the external IDP |
callbackPath | string Callback path. Callback path for the identity provider |
clientId | string Client ID. Client ID is retrieved as part of registering with the external IDP |
clientSecret | string Client secret. Client secret is retrieved as part of registering with the external IDP |
enabled | boolean |
name | string Name |
promptForLogin | boolean Prompt for login. Determines whether users will be prompted for credentials every time they log on |
scopes | Array of strings Scopes. Scopes to include in queries to external IDP |
userNameClaimType | string Preferred user name claim. The name of the claim used for generating unique user names for the local users |
object |
{- "callbackPath": "/signin-oidc",
- "clientId": "ms.idp",
- "clientSecret": "string",
- "enabled": true,
- "name": "TA External Provider",
- "promptForLogin": true,
- "scopes": [
- "string"
], - "userNameClaimType": "string",
- "relations": {
- "self": {
- "type": "loginProviders",
- "id": "cb707285-8180-49d3-89c9-2916186be755"
}
}
}
{- "result": {
- "callbackPath": "/signin-oidc",
- "clientId": "ms.idp",
- "clientSecret": "string",
- "clientSecretHasValue": true,
- "displayName": "TA External Provider",
- "enabled": true,
- "id": "cb707285-8180-49d3-89c9-2916186be755",
- "name": "TA External Provider",
- "promptForLogin": true,
- "registeredClaims": [
- {
- "caseSensitive": false,
- "displayName": "VMS role",
- "id": 1,
- "name": "vms_role",
- "relations": {
- "self": {
- "type": "registeredClaims",
- "id": "95206c2c-cf5f-46ca-9c64-4cb44b4e5a1e"
}, - "parent": {
- "type": "loginProviders",
- "id": "cb707285-8180-49d3-89c9-2916186be755"
}
}
}
], - "scopes": [
- "string"
], - "userNameClaimType": "string",
- "relations": {
- "self": {
- "type": "loginProviders",
- "id": "cb707285-8180-49d3-89c9-2916186be755"
}
}
}
}
External IDP
id required | string <guid> Example: cb707285-8180-49d3-89c9-2916186be755 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "callbackPath": "/signin-oidc",
- "clientId": "ms.idp",
- "clientSecret": "string",
- "clientSecretHasValue": true,
- "displayName": "TA External Provider",
- "enabled": true,
- "id": "cb707285-8180-49d3-89c9-2916186be755",
- "name": "TA External Provider",
- "promptForLogin": true,
- "registeredClaims": [
- {
- "caseSensitive": false,
- "displayName": "VMS role",
- "id": 1,
- "name": "vms_role",
- "relations": {
- "self": {
- "type": "registeredClaims",
- "id": "95206c2c-cf5f-46ca-9c64-4cb44b4e5a1e"
}, - "parent": {
- "type": "loginProviders",
- "id": "cb707285-8180-49d3-89c9-2916186be755"
}
}
}
], - "scopes": [
- "string"
], - "userNameClaimType": "string",
- "relations": {
- "self": {
- "type": "loginProviders",
- "id": "cb707285-8180-49d3-89c9-2916186be755"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
External IDP
id required | string <guid> Example: cb707285-8180-49d3-89c9-2916186be755 Id of the object |
authority | string Authentication authority. Authentication authority for the external IDP |
callbackPath | string Callback path. Callback path for the identity provider |
clientId | string Client ID. Client ID is retrieved as part of registering with the external IDP |
clientSecret | string Client secret. Client secret is retrieved as part of registering with the external IDP |
enabled | boolean |
name | string Name |
promptForLogin | boolean Prompt for login. Determines whether users will be prompted for credentials every time they log on |
scopes | Array of strings Scopes. Scopes to include in queries to external IDP |
userNameClaimType | string Preferred user name claim. The name of the claim used for generating unique user names for the local users |
object |
{- "callbackPath": "/signin-oidc",
- "clientId": "ms.idp",
- "clientSecret": "string",
- "enabled": true,
- "name": "TA External Provider",
- "promptForLogin": true,
- "scopes": [
- "string"
], - "userNameClaimType": "string",
- "relations": {
- "self": {
- "type": "loginProviders",
- "id": "cb707285-8180-49d3-89c9-2916186be755"
}
}
}
{- "data": {
- "callbackPath": "/signin-oidc",
- "clientId": "ms.idp",
- "clientSecret": "string",
- "clientSecretHasValue": true,
- "displayName": "TA External Provider",
- "enabled": true,
- "id": "cb707285-8180-49d3-89c9-2916186be755",
- "name": "TA External Provider",
- "promptForLogin": true,
- "registeredClaims": [
- {
- "caseSensitive": false,
- "displayName": "VMS role",
- "id": 1,
- "name": "vms_role",
- "relations": {
- "self": {
- "type": "registeredClaims",
- "id": "95206c2c-cf5f-46ca-9c64-4cb44b4e5a1e"
}, - "parent": {
- "type": "loginProviders",
- "id": "cb707285-8180-49d3-89c9-2916186be755"
}
}
}
], - "scopes": [
- "string"
], - "userNameClaimType": "string",
- "relations": {
- "self": {
- "type": "loginProviders",
- "id": "cb707285-8180-49d3-89c9-2916186be755"
}
}
}
}
External IDP
id required | string <guid> Example: cb707285-8180-49d3-89c9-2916186be755 Id of the object |
authority | string Authentication authority. Authentication authority for the external IDP |
callbackPath | string Callback path. Callback path for the identity provider |
clientId | string Client ID. Client ID is retrieved as part of registering with the external IDP |
clientSecret | string Client secret. Client secret is retrieved as part of registering with the external IDP |
enabled | boolean |
name | string Name |
promptForLogin | boolean Prompt for login. Determines whether users will be prompted for credentials every time they log on |
scopes | Array of strings Scopes. Scopes to include in queries to external IDP |
userNameClaimType | string Preferred user name claim. The name of the claim used for generating unique user names for the local users |
object |
{- "callbackPath": "/signin-oidc",
- "clientId": "ms.idp",
- "clientSecret": "string",
- "enabled": true,
- "name": "TA External Provider",
- "promptForLogin": true,
- "scopes": [
- "string"
], - "userNameClaimType": "string",
- "relations": {
- "self": {
- "type": "loginProviders",
- "id": "cb707285-8180-49d3-89c9-2916186be755"
}
}
}
{- "data": {
- "callbackPath": "/signin-oidc",
- "clientId": "ms.idp",
- "clientSecret": "string",
- "clientSecretHasValue": true,
- "displayName": "TA External Provider",
- "enabled": true,
- "id": "cb707285-8180-49d3-89c9-2916186be755",
- "name": "TA External Provider",
- "promptForLogin": true,
- "registeredClaims": [
- {
- "caseSensitive": false,
- "displayName": "VMS role",
- "id": 1,
- "name": "vms_role",
- "relations": {
- "self": {
- "type": "registeredClaims",
- "id": "95206c2c-cf5f-46ca-9c64-4cb44b4e5a1e"
}, - "parent": {
- "type": "loginProviders",
- "id": "cb707285-8180-49d3-89c9-2916186be755"
}
}
}
], - "scopes": [
- "string"
], - "userNameClaimType": "string",
- "relations": {
- "self": {
- "type": "loginProviders",
- "id": "cb707285-8180-49d3-89c9-2916186be755"
}
}
}
}
External IDP
id required | string <guid> Example: cb707285-8180-49d3-89c9-2916186be755 Id of the loginProvider object |
{- "array": [
- {
- "caseSensitive": false,
- "displayName": "VMS role",
- "id": 1,
- "name": "vms_role",
- "relations": {
- "self": {
- "type": "registeredClaims",
- "id": "95206c2c-cf5f-46ca-9c64-4cb44b4e5a1e"
}, - "parent": {
- "type": "loginProviders",
- "id": "cb707285-8180-49d3-89c9-2916186be755"
}
}
}
]
}
External IDP
id required | string <guid> Example: cb707285-8180-49d3-89c9-2916186be755 Id of the loginProvider object |
name | string Name |
object |
{- "name": "vms_role",
- "relations": {
- "self": {
- "type": "registeredClaims",
- "id": "95206c2c-cf5f-46ca-9c64-4cb44b4e5a1e"
}, - "parent": {
- "type": "loginProviders",
- "id": "cb707285-8180-49d3-89c9-2916186be755"
}
}
}
{- "result": {
- "caseSensitive": false,
- "displayName": "VMS role",
- "id": 1,
- "name": "vms_role",
- "relations": {
- "self": {
- "type": "registeredClaims",
- "id": "95206c2c-cf5f-46ca-9c64-4cb44b4e5a1e"
}, - "parent": {
- "type": "loginProviders",
- "id": "cb707285-8180-49d3-89c9-2916186be755"
}
}
}
}
External IDP
idParent required | string <guid> Example: cb707285-8180-49d3-89c9-2916186be755 Id of parent object |
id required | string <guid> Example: cb707285-8180-49d3-89c9-2916186be755 Id of the object |
{- "array": [
- {
- "caseSensitive": false,
- "displayName": "VMS role",
- "id": 1,
- "name": "vms_role",
- "relations": {
- "self": {
- "type": "registeredClaims",
- "id": "95206c2c-cf5f-46ca-9c64-4cb44b4e5a1e"
}, - "parent": {
- "type": "loginProviders",
- "id": "cb707285-8180-49d3-89c9-2916186be755"
}
}
}
]
}
External IDP
idParent required | string <guid> Example: cb707285-8180-49d3-89c9-2916186be755 Id of parent object |
id required | string <guid> Example: cb707285-8180-49d3-89c9-2916186be755 Id of the object |
{- "state": "Success"
}
Get array of all mailNotificationProfiles
{- "array": [
- {
- "description": "MailNotificationProfile may have a long description",
- "displayName": "My mail notification profile2",
- "embedImages": true,
- "frameRate": 25,
- "id": "19d8f6ba-324f-4eed-8861-0e3f8763210d",
- "includeAVI": true,
- "includeImages": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "messageText": "My mail notification profile message",
- "name": "My mail notification profile2",
- "numberOfImages": 1,
- "recipients": [
- "string"
], - "subject": "My mail notification profile subject",
- "timeAfterEvent": 1,
- "timeBeforeEvent": 1,
- "timeBetweenImages": 1,
- "timeBetweenMails": 1,
- "relations": {
- "self": {
- "type": "mailNotificationProfiles",
- "id": "19d8f6ba-324f-4eed-8861-0e3f8763210d"
}
}
}
]
}
Add new mailNotificationProfiles
description | string Description |
embedImages | boolean Embed images in e-mail |
frameRate | integer Frame rate |
includeAVI | boolean Include AVI |
includeImages | boolean Include images |
messageText | string Message text. The content of the e-mail being sent out. Fields from the triggering event can be included in the message, place these fields in the message with $ sign around it, like $RecorderName$,$HardwareName$,$DeviceName$,$RuleName$,$TriggerTime$ |
name | string Name |
numberOfImages | integer Number of images |
recipients | Array of strings Recipients |
subject | string Subject |
timeAfterEvent | integer Time after event (sec) |
timeBeforeEvent | integer Time before event (sec) |
timeBetweenImages | integer Time between images (ms) |
timeBetweenMails | integer Time between e-mails. Minimum number of seconds between e-mails |
object |
{- "description": "MailNotificationProfile may have a long description",
- "embedImages": true,
- "frameRate": 25,
- "includeAVI": true,
- "includeImages": true,
- "messageText": "My mail notification profile message",
- "name": "My mail notification profile2",
- "numberOfImages": 1,
- "recipients": [
- "string"
], - "subject": "My mail notification profile subject",
- "timeAfterEvent": 1,
- "timeBeforeEvent": 1,
- "timeBetweenImages": 1,
- "timeBetweenMails": 1,
- "relations": {
- "self": {
- "type": "mailNotificationProfiles",
- "id": "19d8f6ba-324f-4eed-8861-0e3f8763210d"
}
}
}
{- "result": {
- "description": "MailNotificationProfile may have a long description",
- "displayName": "My mail notification profile2",
- "embedImages": true,
- "frameRate": 25,
- "id": "19d8f6ba-324f-4eed-8861-0e3f8763210d",
- "includeAVI": true,
- "includeImages": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "messageText": "My mail notification profile message",
- "name": "My mail notification profile2",
- "numberOfImages": 1,
- "recipients": [
- "string"
], - "subject": "My mail notification profile subject",
- "timeAfterEvent": 1,
- "timeBeforeEvent": 1,
- "timeBetweenImages": 1,
- "timeBetweenMails": 1,
- "relations": {
- "self": {
- "type": "mailNotificationProfiles",
- "id": "19d8f6ba-324f-4eed-8861-0e3f8763210d"
}
}
}
}
Get specific object of mailNotificationProfiles
id required | string <guid> Example: 19d8f6ba-324f-4eed-8861-0e3f8763210d Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "description": "MailNotificationProfile may have a long description",
- "displayName": "My mail notification profile2",
- "embedImages": true,
- "frameRate": 25,
- "id": "19d8f6ba-324f-4eed-8861-0e3f8763210d",
- "includeAVI": true,
- "includeImages": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "messageText": "My mail notification profile message",
- "name": "My mail notification profile2",
- "numberOfImages": 1,
- "recipients": [
- "string"
], - "subject": "My mail notification profile subject",
- "timeAfterEvent": 1,
- "timeBeforeEvent": 1,
- "timeBetweenImages": 1,
- "timeBetweenMails": 1,
- "relations": {
- "self": {
- "type": "mailNotificationProfiles",
- "id": "19d8f6ba-324f-4eed-8861-0e3f8763210d"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Update all fields on mailNotificationProfiles
id required | string <guid> Example: 19d8f6ba-324f-4eed-8861-0e3f8763210d Id of the object |
description | string Description |
embedImages | boolean Embed images in e-mail |
frameRate | integer Frame rate |
includeAVI | boolean Include AVI |
includeImages | boolean Include images |
messageText | string Message text. The content of the e-mail being sent out. Fields from the triggering event can be included in the message, place these fields in the message with $ sign around it, like $RecorderName$,$HardwareName$,$DeviceName$,$RuleName$,$TriggerTime$ |
name | string Name |
numberOfImages | integer Number of images |
recipients | Array of strings Recipients |
subject | string Subject |
timeAfterEvent | integer Time after event (sec) |
timeBeforeEvent | integer Time before event (sec) |
timeBetweenImages | integer Time between images (ms) |
timeBetweenMails | integer Time between e-mails. Minimum number of seconds between e-mails |
object |
{- "description": "MailNotificationProfile may have a long description",
- "embedImages": true,
- "frameRate": 25,
- "includeAVI": true,
- "includeImages": true,
- "messageText": "My mail notification profile message",
- "name": "My mail notification profile2",
- "numberOfImages": 1,
- "recipients": [
- "string"
], - "subject": "My mail notification profile subject",
- "timeAfterEvent": 1,
- "timeBeforeEvent": 1,
- "timeBetweenImages": 1,
- "timeBetweenMails": 1,
- "relations": {
- "self": {
- "type": "mailNotificationProfiles",
- "id": "19d8f6ba-324f-4eed-8861-0e3f8763210d"
}
}
}
{- "data": {
- "description": "MailNotificationProfile may have a long description",
- "displayName": "My mail notification profile2",
- "embedImages": true,
- "frameRate": 25,
- "id": "19d8f6ba-324f-4eed-8861-0e3f8763210d",
- "includeAVI": true,
- "includeImages": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "messageText": "My mail notification profile message",
- "name": "My mail notification profile2",
- "numberOfImages": 1,
- "recipients": [
- "string"
], - "subject": "My mail notification profile subject",
- "timeAfterEvent": 1,
- "timeBeforeEvent": 1,
- "timeBetweenImages": 1,
- "timeBetweenMails": 1,
- "relations": {
- "self": {
- "type": "mailNotificationProfiles",
- "id": "19d8f6ba-324f-4eed-8861-0e3f8763210d"
}
}
}
}
Update provided fields on mailNotificationProfiles
id required | string <guid> Example: 19d8f6ba-324f-4eed-8861-0e3f8763210d Id of the object |
description | string Description |
embedImages | boolean Embed images in e-mail |
frameRate | integer Frame rate |
includeAVI | boolean Include AVI |
includeImages | boolean Include images |
messageText | string Message text. The content of the e-mail being sent out. Fields from the triggering event can be included in the message, place these fields in the message with $ sign around it, like $RecorderName$,$HardwareName$,$DeviceName$,$RuleName$,$TriggerTime$ |
name | string Name |
numberOfImages | integer Number of images |
recipients | Array of strings Recipients |
subject | string Subject |
timeAfterEvent | integer Time after event (sec) |
timeBeforeEvent | integer Time before event (sec) |
timeBetweenImages | integer Time between images (ms) |
timeBetweenMails | integer Time between e-mails. Minimum number of seconds between e-mails |
object |
{- "description": "MailNotificationProfile may have a long description",
- "embedImages": true,
- "frameRate": 25,
- "includeAVI": true,
- "includeImages": true,
- "messageText": "My mail notification profile message",
- "name": "My mail notification profile2",
- "numberOfImages": 1,
- "recipients": [
- "string"
], - "subject": "My mail notification profile subject",
- "timeAfterEvent": 1,
- "timeBeforeEvent": 1,
- "timeBetweenImages": 1,
- "timeBetweenMails": 1,
- "relations": {
- "self": {
- "type": "mailNotificationProfiles",
- "id": "19d8f6ba-324f-4eed-8861-0e3f8763210d"
}
}
}
{- "data": {
- "description": "MailNotificationProfile may have a long description",
- "displayName": "My mail notification profile2",
- "embedImages": true,
- "frameRate": 25,
- "id": "19d8f6ba-324f-4eed-8861-0e3f8763210d",
- "includeAVI": true,
- "includeImages": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "messageText": "My mail notification profile message",
- "name": "My mail notification profile2",
- "numberOfImages": 1,
- "recipients": [
- "string"
], - "subject": "My mail notification profile subject",
- "timeAfterEvent": 1,
- "timeBeforeEvent": 1,
- "timeBetweenImages": 1,
- "timeBetweenMails": 1,
- "relations": {
- "self": {
- "type": "mailNotificationProfiles",
- "id": "19d8f6ba-324f-4eed-8861-0e3f8763210d"
}
}
}
}
{- "array": [
- {
- "address": "localhost",
- "description": "Matrix may have a long description",
- "displayName": "MyMatrix",
- "id": "4cb572c6-20af-4dba-a000-0b6104285607",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyMatrix",
- "password": "string",
- "port": 12345,
- "relations": {
- "self": {
- "type": "matrix",
- "id": "4cb572c6-20af-4dba-a000-0b6104285607"
}
}
}
]
}
Add new matrix
address | string Address |
description | string Description |
name | string Name |
password | string Password |
port | integer Port |
object |
{- "address": "localhost",
- "description": "Matrix may have a long description",
- "name": "MyMatrix",
- "password": "string",
- "port": 12345,
- "relations": {
- "self": {
- "type": "matrix",
- "id": "4cb572c6-20af-4dba-a000-0b6104285607"
}
}
}
{- "result": {
- "address": "localhost",
- "description": "Matrix may have a long description",
- "displayName": "MyMatrix",
- "id": "4cb572c6-20af-4dba-a000-0b6104285607",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyMatrix",
- "password": "string",
- "port": 12345,
- "relations": {
- "self": {
- "type": "matrix",
- "id": "4cb572c6-20af-4dba-a000-0b6104285607"
}
}
}
}
Get specific object of Matrix
id required | string <guid> Example: 4cb572c6-20af-4dba-a000-0b6104285607 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "address": "localhost",
- "description": "Matrix may have a long description",
- "displayName": "MyMatrix",
- "id": "4cb572c6-20af-4dba-a000-0b6104285607",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyMatrix",
- "password": "string",
- "port": 12345,
- "relations": {
- "self": {
- "type": "matrix",
- "id": "4cb572c6-20af-4dba-a000-0b6104285607"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Update all fields on Matrix
id required | string <guid> Example: 4cb572c6-20af-4dba-a000-0b6104285607 Id of the object |
address | string Address |
description | string Description |
name | string Name |
password | string Password |
port | integer Port |
object |
{- "address": "localhost",
- "description": "Matrix may have a long description",
- "name": "MyMatrix",
- "password": "string",
- "port": 12345,
- "relations": {
- "self": {
- "type": "matrix",
- "id": "4cb572c6-20af-4dba-a000-0b6104285607"
}
}
}
{- "data": {
- "address": "localhost",
- "description": "Matrix may have a long description",
- "displayName": "MyMatrix",
- "id": "4cb572c6-20af-4dba-a000-0b6104285607",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyMatrix",
- "password": "string",
- "port": 12345,
- "relations": {
- "self": {
- "type": "matrix",
- "id": "4cb572c6-20af-4dba-a000-0b6104285607"
}
}
}
}
Update provided fields on Matrix
id required | string <guid> Example: 4cb572c6-20af-4dba-a000-0b6104285607 Id of the object |
address | string Address |
description | string Description |
name | string Name |
password | string Password |
port | integer Port |
object |
{- "address": "localhost",
- "description": "Matrix may have a long description",
- "name": "MyMatrix",
- "password": "string",
- "port": 12345,
- "relations": {
- "self": {
- "type": "matrix",
- "id": "4cb572c6-20af-4dba-a000-0b6104285607"
}
}
}
{- "data": {
- "address": "localhost",
- "description": "Matrix may have a long description",
- "displayName": "MyMatrix",
- "id": "4cb572c6-20af-4dba-a000-0b6104285607",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyMatrix",
- "password": "string",
- "port": 12345,
- "relations": {
- "self": {
- "type": "matrix",
- "id": "4cb572c6-20af-4dba-a000-0b6104285607"
}
}
}
}
Perform a task
id required | string <guid> Example: 4cb572c6-20af-4dba-a000-0b6104285607 Id of the object |
task required | string Example: task=MatrixCommand task=ChangeSecurityPermissions, or task=MatrixCommand ChangeSecurityPermissions - Edit permissions MatrixCommand - Matrix command |
object (path_roles) User or role to update |
{- "userPath": {
- "type": "roles",
- "id": "9b9cd381-00ab-41a6-a0a5-be8c705bc26b"
}
}
{- "result": {
- "displayName": "MultiStream Camera",
- "enabled": true,
- "userPath": {
- "type": "roles",
- "id": "9b9cd381-00ab-41a6-a0a5-be8c705bc26b"
}
}
}
Patrolling profile
id required | string <guid> Example: 0592c885-be06-4b65-b058-0118c873b733 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Patrolling profile
id required | string <guid> Example: 0592c885-be06-4b65-b058-0118c873b733 Id of the object |
customizeTransitions | boolean Customize transitions. Indicates if transition from one preset to another should to be configured |
description | string Description |
endPresetId | string Enum: "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab" "6ed2365c-2b05-4003-ad91-ed183b0b9b3e" End position: Preset. .
Value map to display names:
efc9e3f4-20fe-4dcf-abd1-176d43cd74ab=Ptz Preset 1 |
endSpeed | number <double> End position: Speed. A value between 0.0 and 1.0, where 1.0 is full speed |
endTransitionTime | number <double> End position: Transition time. The number of seconds it is expected to take for the movement to complete |
initSpeed | number <double> Initial transition: Speed. A value between 0.0 and 1.0, where 1.0 is full speed |
initTransitionTime | number <double> Initial transition: Transition time. The number of seconds it is expected to take for the movement to complete |
name | string Name |
Array of objects (patrollingEntry) | |
object |
{- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
{- "data": {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
}
Patrolling profile
id required | string <guid> Example: 0592c885-be06-4b65-b058-0118c873b733 Id of the object |
customizeTransitions | boolean Customize transitions. Indicates if transition from one preset to another should to be configured |
description | string Description |
endPresetId | string Enum: "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab" "6ed2365c-2b05-4003-ad91-ed183b0b9b3e" End position: Preset. .
Value map to display names:
efc9e3f4-20fe-4dcf-abd1-176d43cd74ab=Ptz Preset 1 |
endSpeed | number <double> End position: Speed. A value between 0.0 and 1.0, where 1.0 is full speed |
endTransitionTime | number <double> End position: Transition time. The number of seconds it is expected to take for the movement to complete |
initSpeed | number <double> Initial transition: Speed. A value between 0.0 and 1.0, where 1.0 is full speed |
initTransitionTime | number <double> Initial transition: Transition time. The number of seconds it is expected to take for the movement to complete |
name | string Name |
Array of objects (patrollingEntry) | |
object |
{- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
{- "data": {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
}
Patrolling profile
id required | string <guid> Example: 0592c885-be06-4b65-b058-0118c873b733 Id of the object |
task required | string Example: task=RemovePatrollingEntry task=AddPatrollingEntry, or task=RemovePatrollingEntry AddPatrollingEntry - Add patrolling entry RemovePatrollingEntry - Remove patrolling entry |
order | integer Order. Defines the order in which the presets are used. Value from 0 to x. |
presetId | string Preset ID |
waitTime | number <double> Wait time. The number of seconds the camera should stay at this preset position |
{- "order": 0,
- "presetId": "string",
- "waitTime": 0.1
}
{- "result": {
- "displayName": "Profile 1",
- "order": 2,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 3
}
}
{- "array": [
- {
- "childSites": [
- { }
], - "connectionState": "Attached",
- "description": "Site may have a long description",
- "displayName": "DKTA-0814SK0013",
- "id": "89b2eec5-8235-4382-8312-c55d87a7b510",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "serviceAccount": "S-1-5-20",
- "siteAddresses": [
- {
- "addressType": "Internal",
}
], - "synchronizationStatus": 201,
- "version": "24.2.0.1",
- "relations": {
- "self": {
- "type": "childSites",
- "id": "89b2eec5-8235-4382-8312-c55d87a7b510"
}
}
}
]
}
Child sites
id required | string <guid> Example: 89b2eec5-8235-4382-8312-c55d87a7b510 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "childSites": [
- { }
], - "connectionState": "Attached",
- "description": "Site may have a long description",
- "displayName": "DKTA-0814SK0013",
- "id": "89b2eec5-8235-4382-8312-c55d87a7b510",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "serviceAccount": "S-1-5-20",
- "siteAddresses": [
- {
- "addressType": "Internal",
}
], - "synchronizationStatus": 201,
- "version": "24.2.0.1",
- "relations": {
- "self": {
- "type": "childSites",
- "id": "89b2eec5-8235-4382-8312-c55d87a7b510"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Child sites
id required | string <guid> Example: 89b2eec5-8235-4382-8312-c55d87a7b510 Id of the object |
object |
{- "relations": {
- "self": {
- "type": "childSites",
- "id": "89b2eec5-8235-4382-8312-c55d87a7b510"
}
}
}
{- "data": {
- "childSites": [
- { }
], - "connectionState": "Attached",
- "description": "Site may have a long description",
- "displayName": "DKTA-0814SK0013",
- "id": "89b2eec5-8235-4382-8312-c55d87a7b510",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "serviceAccount": "S-1-5-20",
- "siteAddresses": [
- {
- "addressType": "Internal",
}
], - "synchronizationStatus": 201,
- "version": "24.2.0.1",
- "relations": {
- "self": {
- "type": "childSites",
- "id": "89b2eec5-8235-4382-8312-c55d87a7b510"
}
}
}
}
Child sites
id required | string <guid> Example: 89b2eec5-8235-4382-8312-c55d87a7b510 Id of the object |
object |
{- "relations": {
- "self": {
- "type": "childSites",
- "id": "89b2eec5-8235-4382-8312-c55d87a7b510"
}
}
}
{- "data": {
- "childSites": [
- { }
], - "connectionState": "Attached",
- "description": "Site may have a long description",
- "displayName": "DKTA-0814SK0013",
- "id": "89b2eec5-8235-4382-8312-c55d87a7b510",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "serviceAccount": "S-1-5-20",
- "siteAddresses": [
- {
- "addressType": "Internal",
}
], - "synchronizationStatus": 201,
- "version": "24.2.0.1",
- "relations": {
- "self": {
- "type": "childSites",
- "id": "89b2eec5-8235-4382-8312-c55d87a7b510"
}
}
}
}
Child sites
id required | string <guid> Example: 89b2eec5-8235-4382-8312-c55d87a7b510 Id of the object |
task required | string Example: task=ChangeSecurityPermissions task=ChangeSecurityPermissions ChangeSecurityPermissions - Edit permissions |
object (path_roles) User or role to update |
{- "userPath": {
- "type": "roles",
- "id": "9b9cd381-00ab-41a6-a0a5-be8c705bc26b"
}
}
{- "result": {
- "displayName": "MultiStream Camera",
- "enabled": true,
- "userPath": {
- "type": "roles",
- "id": "9b9cd381-00ab-41a6-a0a5-be8c705bc26b"
}
}
}
Child sites
id required | string <guid> Example: 89b2eec5-8235-4382-8312-c55d87a7b510 Id of the childSite object |
{- "array": [
- {
- "childSites": [
- { }
], - "connectionState": "Attached",
- "description": "Site may have a long description",
- "displayName": "DKTA-0814SK0013",
- "id": "89b2eec5-8235-4382-8312-c55d87a7b510",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "serviceAccount": "S-1-5-20",
- "siteAddresses": [
- {
- "addressType": "Internal",
}
], - "synchronizationStatus": 201,
- "version": "24.2.0.1",
- "relations": {
- "self": {
- "type": "childSites",
- "id": "89b2eec5-8235-4382-8312-c55d87a7b510"
}
}
}
]
}
{- "array": [
- {
- "accessControlSystems": [
- {
- "accessControlUnits": [
- {
- "accessControlUnits": [
- { }
], - "displayName": "Controller 1",
- "id": "e4d81a4d-b0cc-4033-be19-2b50a4469548",
- "name": "Controller 1",
- "ruleGroup": "AccessControlRuleGroup[16F7C724-D91F-1443-1D8E-26F90A94FBB7]",
- "relations": {
- "self": {
- "type": "accessControlUnits",
- "id": "e4d81a4d-b0cc-4033-be19-2b50a4469548"
}, - "parent": {
- "type": "accessControlSystems",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
}
}
], - "displayName": "Test System",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6",
- "name": "Test System",
- "ruleGroup": "AccessControlRuleGroup[7142F91D-9959-0519-25B7-B47381590EE9]",
- "relations": {
- "self": {
- "type": "accessControlSystems",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
}
}
], - "alarmDefinitions": [
- {
- "assignableToAdmins": false,
- "autoClose": false,
- "category": "97bda9c2-bb15-4106-a59b-e72b193820ee",
- "description": "AlarmDefinition may have a long description",
- "disableEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "displayName": "Alarm High Priority",
- "enabled": true,
- "enableEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "enableRule": "0",
- "eventType": "0fcb1955-0e80-4fd4-a78a-db47ee89700c",
- "eventTypeGroup": "5946b6fa-44d9-4f4c-82bb-46a17b924265",
- "id": "9094284b-34c3-4e53-a3d7-8e7e3652567b",
- "managementTimeoutEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "managementTimeoutTime": "00:01:00",
- "mapType": "0",
- "name": "Alarm High Priority",
- "owner": "TA Test User (ta\\tatest)",
- "priority": "8188ff24-b5da-4c19-9ebf-c1d8fc2caa75",
- "relatedCameraList": [
- {
- "type": "cameras",
- "id": "abbe8d6b-765d-4a42-8e5c-14a2e5262df1"
}
], - "relatedMap": "00000000-0000-0000-0000-000000000000",
- "sourceList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "timeProfile": {
- "type": "timeProfiles",
- "id": "3a9a3f27-feb0-4781-85ba-0f6e7251eef1"
}, - "triggerEventlist": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "relations": {
- "self": {
- "type": "alarmDefinitions",
- "id": "9094284b-34c3-4e53-a3d7-8e7e3652567b"
}
}
}
], - "analyticsEvents": [
- {
- "description": "AnalyticsEvent may have a long description",
- "displayName": "MyAnalyticsEvent",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyAnalyticsEvent",
- "sourceArray": [
- "string"
], - "relations": {
- "self": {
- "type": "analyticsEvents",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2"
}
}
}
], - "basicUsers": [
- {
- "canChangePassword": true,
- "claims": [
- {
- "claimName": "vms_role",
- "claimProvider": "a873a5bb-ad32-47cb-bebc-6a95f9252e90",
- "claimValue": "admin",
- "displayName": "admin"
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "BasicUser may have a long description",
- "displayName": "Bob",
- "forcePasswordChange": false,
- "id": "3d7bc850-a0a9-465e-a362-b4d4c07c09b3",
- "isExternal": false,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "lockoutEnd": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bob",
- "sid": "083BDFD6-F583-4F6B-BDFE-5819D287C243",
- "status": "Enabled",
- "relations": {
- "self": {
- "type": "basicUsers",
- "id": "3d7bc850-a0a9-465e-a362-b4d4c07c09b3"
}
}
}
], - "cameraGroups": [
- {
- "builtIn": false,
- "cameraGroups": [
- { }
], - "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- null
], - "shortcut": 0,
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- null
], - "relations": {
- "self": { },
- "parent": { }
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- null
], - "relations": {
- "self": { },
- "parent": { }
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- null
], - "ptz": {
- "displayName": null,
- "pan": null,
- "ptzCenterAndZoomToRectangle": null,
- "ptzCenterOnPositionInView": null,
- "ptzCOMPort": null,
- "ptzDeviceID": null,
- "ptzDiagonalSupport": null,
- "ptzEnabled": null,
- "ptzHomeSupport": null,
- "ptzIpix": null,
- "ptzPresetConfiguration": null,
- "ptzProtocol": null,
- "tilt": null,
- "zoom": null
}, - "ptzSessionTimeouts": {
- "displayName": null,
- "manualPTZTimeout": null,
- "pausePatrollingTimeout": null,
- "reservedPTZTimeout": null
}, - "stream": [
- null
], - "relations": {
- "self": { },
- "parent": { }
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- null
], - "relations": {
- "self": { },
- "parent": { }
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "description": "CameraGroup may have a long description",
- "displayName": "Direct Show",
- "id": "815ee09f-312b-489b-b541-f16d2d1fc901",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Direct Show",
- "relations": {
- "self": {
- "type": "cameraGroups",
- "id": "815ee09f-312b-489b-b541-f16d2d1fc901"
}
}
}
], - "childSites": [
- {
- "childSites": [
- { }
], - "connectionState": "Attached",
- "description": "Site may have a long description",
- "displayName": "DKTA-0814SK0013",
- "id": "89b2eec5-8235-4382-8312-c55d87a7b510",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "serviceAccount": "S-1-5-20",
- "siteAddresses": [
- {
- "addressType": "Internal",
}
], - "synchronizationStatus": 201,
- "version": "24.2.0.1",
- "relations": {
- "self": {
- "type": "childSites",
- "id": "89b2eec5-8235-4382-8312-c55d87a7b510"
}
}
}
], - "clientProfiles": [
- {
- "description": "ClientProfile may have a long description",
- "displayName": "My profile",
- "id": "210ff07d-91e6-48f4-8ade-ae79d29d749e",
- "isDefaultProfile": false,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "My profile",
- "clientProfileAccessControl": {
- "displayName": "Access Control",
- "showAccessRequestNotifications": "Yes",
- "showAccessRequestNotificationsLocked": false
}, - "clientProfileAdvanced": {
- "advancedAdaptiveStreaming": "Disabled",
- "advancedAdaptiveStreamingLocked": false,
- "advancedDeinterlacing": "Default",
- "advancedDeinterlacingLocked": false,
- "advancedMaxDecodingThreads": "Auto",
- "advancedMaxDecodingThreadsLocked": false,
- "advancedMulticast": "Enabled",
- "advancedMulticastLocked": false,
- "advancedTimeZone": "LocalMachine",
- "advancedTimeZoneCustom": "Dateline Standard Time",
- "advancedTimeZoneCustomLocked": false,
- "advancedTimeZoneLocked": false,
- "advancedVideoPlayerDiagnosticLevel": "Level0",
- "advancedVideoPlayerDiagnosticLevelLocked": false,
- "advancedVideoPlayerHardwareDecodingMode": "Auto",
- "advancedVideoPlayerHardwareDecodingModeLocked": false,
- "displayName": "Advanced"
}, - "clientProfileAlarmManager": {
- "alarmManagerPlaySoundNotifications": "No",
- "alarmManagerPlaySoundNotificationsLocked": false,
- "alarmManagerShowDesktopNotifications": "No",
- "alarmManagerShowDesktopNotificationsLocked": false,
- "displayName": "Alarm Manager"
}, - "clientProfileExport": {
- "displayName": "Export",
- "exportDestinationType": "Both",
- "exportDestinationTypeLocked": false,
- "exportMergeAddPadding": "No",
- "exportMergeAddPaddingLocked": false,
- "exportMergeFormat": "MP4",
- "exportMergeFormatLocked": false,
- "exportMergeFramesPerSecond": "Fps30",
- "exportMergeFramesPerSecondLocked": false,
- "exportMergeMediaPlayerFormat": "Unavailable",
- "exportMergeMediaPlayerFormatLocked": true,
- "exportMergePreventUpscaling": "No",
- "exportMergePreventUpscalingLocked": false,
- "exportMergeQuality": "Medium",
- "exportMergeQualityLocked": false,
- "exportMergeResolution": "FullHD",
- "exportMergeResolutionLocked": false,
- "exportMergeVideoClipType": "Both",
- "exportMergeVideoClipTypeLocked": false,
- "exportPrivacyMask": "Available",
- "exportPrivacyMaskLocked": false,
- "exportSmartClientPlayerEncryptDatabases": "Yes",
- "exportSmartClientPlayerEncryptDatabasesLocked": true,
- "exportSmartClientPlayerEncryptionStrength": "AES256",
- "exportSmartClientPlayerEncryptionStrengthLocked": true,
- "exportSmartClientPlayerEncryptPassword": "string",
- "exportSmartClientPlayerEncryptPasswordLocked": false,
- "exportSmartClientPlayerFormat": "Available",
- "exportSmartClientPlayerFormatLocked": false,
- "exportSmartClientPlayerGlobalCommentsContent": "string",
- "exportSmartClientPlayerGlobalCommentsContentLocked": false,
- "exportSmartClientPlayerGlobalCommentsMode": "Optional",
- "exportSmartClientPlayerGlobalCommentsModeLocked": false,
- "exportSmartClientPlayerIncludePlayer": "Yes",
- "exportSmartClientPlayerIncludePlayerLocked": false,
- "exportSmartClientPlayerIndividualCommentsMode": "Optional",
- "exportSmartClientPlayerIndividualCommentsModeLocked": false,
- "exportSmartClientPlayerLockForReExport": "Yes",
- "exportSmartClientPlayerLockForReExportLocked": true,
- "exportSmartClientPlayerSignData": "Yes",
- "exportSmartClientPlayerSignDataLocked": true,
- "exportStillImageFormat": "Unavailable",
- "exportStillImageFormatLocked": true,
- "exportStillImageTimestamp": "No",
- "exportStillImageTimestampLocked": false,
- "exportVideoClipCodecProperties": "Available",
- "exportVideoClipCodecPropertiesLocked": false,
- "exportVideoClipFormat": "Unavailable",
- "exportVideoClipFormatLocked": true,
- "exportVideoClipFrameRate": "No",
- "exportVideoClipFrameRateLocked": false,
- "exportVideoClipOutputType": "MKV",
- "exportVideoClipOutputTypeLocked": true,
- "exportVideoClipTextsContent": "string",
- "exportVideoClipTextsContentLocked": false,
- "exportVideoClipTextsMode": "Optional",
- "exportVideoClipTimestamp": "No",
- "exportVideoClipTimestampLocked": false,
- "exportVideoClipType": "Both",
- "exportVideoClipTypeLocked": false,
- "functionsPlaybackExportPath": "Default",
- "functionsPlaybackExportPathCustom": "C:\\Export",
- "functionsPlaybackExportPathCustomLocked": false,
- "panesPlaybackExport": "Available"
}, - "clientProfileGeneral": {
- "alarmManagerTab": "Available",
- "applicationAutoLogin": "Available",
- "applicationEvidenceLock": "Available",
- "applicationExitButton": "Available",
- "applicationHideMousePointerTimeout": "Seconds_5",
- "applicationHideMousePointerTimeoutLocked": false,
- "applicationInactivityTimeout": 0,
- "applicationJoystickSetup": "Available",
- "applicationKeyboardSetup": "Available",
- "applicationLiftPrivacyMaskTimeout": "Minutes_30",
- "applicationLogoutButton": "Available",
- "applicationMaximizeButton": "Available",
- "applicationMinimizeButton": "Available",
- "applicationNewSCVersionText": "string",
- "applicationNewSCVersionWindow": "Show",
- "applicationOnlineHelp": "Available",
- "applicationOnlineHelpLocked": false,
- "applicationOptionsDialogButton": "Available",
- "applicationRememberPassword": "Available",
- "applicationSnapshotAvailability": "Available",
- "applicationSnapshotAvailabilityLocked": false,
- "applicationSnapshotPath": "c:\\Snapshots",
- "applicationSnapshotPathLocked": false,
- "applicationStartMode": "Last",
- "applicationStartModeLocked": false,
- "applicationStartView": "Last",
- "applicationStartViewLocked": false,
- "applicationTransactTab": "Available",
- "applicationVideoTutorials": "Available",
- "applicationVideoTutorialsLocked": false,
- "centralizedSearchMaxDeviceCount": "Count_100",
- "centralizedSearchTab": "Available",
- "displayName": "General",
- "generalApplicationMaximization": "NormalWindow",
- "generalApplicationMaximizationLocked": false,
- "generalCameraErrors": "BlackImageWithOverlay",
- "generalCameraErrorsLocked": false,
- "generalCameraStoppedMessage": "BlackImageWithOverlay",
- "generalCameraStoppedMessageLocked": false,
- "generalDefaultPtzPointAndClickMode": "VirtualJoystick",
- "generalDefaultPtzPointAndClickModeLocked": false,
- "generalDefaultVideoBuffer": "Standard",
- "generalDefaultVideoBufferLocked": false,
- "generalEmptySpaces": "CompanyLogo",
- "generalEmptySpacesLocked": false,
- "generalHtmlViewItemScripting": "Disabled",
- "generalServerErrors": "Hidden",
- "generalServerErrorsLocked": false,
- "generalTimeInTitlebar": "Show",
- "generalTimeInTitlebarLocked": false,
- "generalTitleBar": "Show",
- "generalTitleBarLocked": false,
- "generalViewGridSpacer": "Pixel1",
- "generalViewGridSpacerLocked": false,
- "systemMonitorTab": "Available",
- "viewsCustomLogoInEmptySpaces": "string"
}, - "clientProfileGisMap": {
- "displayName": "Smart map",
- "gisMapBingMapKey": "string",
- "gisMapBingMapKeyLocked": true,
- "gisMapCacheCleanUp": "OnScClose_IfFileNotUsed",
- "gisMapCacheCleanUpLocked": false,
- "gisMapCreateLayerLocation": "No",
- "gisMapCreateLayerLocationLocked": false,
- "gisMapGoogleMapClientId": "string",
- "gisMapGoogleMapClientIdLocked": true,
- "gisMapGoogleMapPrivateKey": "string",
- "gisMapGoogleMapPrivateKeyLocked": true,
- "gisMapGoogleMapSigningSecret": "string",
- "gisMapGoogleMapSigningSecretLocked": true,
- "gisMapOpenStreetMapAlternativeServer": "string",
- "gisMapOpenStreetMapAlternativeServerLocked": true,
- "gisMapOpenStreetMapGeographicLayer": "Unavailable",
- "gisMapOpenStreetMapGeographicLayerLocked": true
}, - "clientProfileLive": {
- "displayName": "Live",
- "functionsLiveBookmarkMode": "Quick",
- "functionsLiveBookmarkModeLocked": false,
- "functionsLiveBoundingBoxes": "Available",
- "functionsLiveBoundingBoxesLocked": false,
- "functionsLiveCameraPlayback": "Available",
- "functionsLiveCameraPlaybackLocked": false,
- "functionsLiveOverlayButtons": "Available",
- "functionsLiveOverlayButtonsLocked": false,
- "functionsLivePrintAvailability": "Available",
- "functionsLivePrintAvailabilityLocked": false,
- "panesLiveAudio": "Available",
- "panesLiveAudioLocked": false,
- "panesLiveEvents": "Available",
- "panesLiveEventsLocked": false,
- "panesLiveMIPPlugin": "Available",
- "panesLiveMIPPluginLocked": false,
- "panesLiveOutputs": "Available",
- "panesLiveOutputsLocked": false,
- "panesLiveSystemOverview": "Available",
- "panesLiveSystemOverviewLocked": false,
- "panesLiveTab": "Available",
- "panesLiveViews": "Available",
- "panesLiveViewsLocked": false
}, - "clientProfilePlayback": {
- "displayName": "Playback",
- "functionsPlaybackBookmarkMode": "Detail",
- "functionsPlaybackBookmarkModeLocked": false,
- "functionsPlaybackBoundingBoxes": "Available",
- "functionsPlaybackBoundingBoxesLocked": false,
- "functionsPlaybackIndependentPlayback": "Available",
- "functionsPlaybackPrintReportCopyRights": "Show",
- "functionsPlaybackPrintReportHeadline": "Default",
- "functionsPlaybackPrintReportHeadlineLocked": false,
- "functionsPlaybackPrintReportHeadlineText": "string",
- "functionsPlaybackPrintReportUserInformation": "Show",
- "panesPlaybackAudio": "Available",
- "panesPlaybackAudioLocked": false,
- "panesPlaybackMIPPlugin": "Available",
- "panesPlaybackMIPPluginLocked": false,
- "panesPlaybackPrint": "Available",
- "panesPlaybackPrintLocked": false,
- "panesPlaybackSystemOverview": "Available",
- "panesPlaybackSystemOverviewLocked": false,
- "panesPlaybackTab": "Available",
- "panesPlaybackViews": "Available",
- "panesPlaybackViewsLocked": false
}, - "clientProfileSetup": {
- "displayName": "Setup",
- "functionsSetupEnableVideoBufferingOption": "Available",
- "functionsSetupEnableVideoBufferingOptionLocked": false,
- "functionsSetupOverlayButtons": "Available",
- "functionsSetupOverlayButtonsLocked": false,
- "mapEditGisMap": "Available",
- "mapEditMaps": "Available",
- "panesSetupMIPPlugin": "Available",
- "panesSetupMIPPluginLocked": false,
- "panesSetupOverlayButtons": "Available",
- "panesSetupOverlayButtonsLocked": false,
- "panesSetupProperties": "Available",
- "panesSetupPropertiesLocked": false,
- "panesSetupSystemOverview": "Available",
- "panesSetupSystemOverviewLocked": false,
- "panesSetupTab": "Available",
- "panesSetupViews": "Available",
- "panesSetupViewsLocked": false
}, - "clientProfileTimeline": {
- "displayName": "Timeline",
- "timelineAllCamerasTimeline": "Show",
- "timelineAllCamerasTimelineLocked": false,
- "timelineBookmarks": "Show",
- "timelineBookmarksLocked": false,
- "timelineHideForNormalViewsTimeout": "Disabled",
- "timelineHideForNormalViewsTimeoutLocked": false,
- "timelineHideForSmartWallViewsTimeout": "Seconds_5",
- "timelineHideForSmartWallViewsTimeoutLocked": false,
- "timelineIncomingAudio": "Hide",
- "timelineIncomingAudioLocked": false,
- "timelineMipData": "Hide",
- "timelineMipDataLocked": false,
- "timelineMipMarker": "Hide",
- "timelineMipMarkerLocked": false,
- "timelineMotion": "Show",
- "timelineMotionLocked": false,
- "timelineOutgoingAudio": "Hide",
- "timelineOutgoingAudioLocked": false,
- "timelineSkipGaps": "DoSkipGaps",
- "timelineSkipGapsLocked": false
}, - "clientProfileViewLayouts": {
- "disabledViewLayouts": [
- {
- "type": "layouts",
- "id": "4514ed40-a3ee-4b47-94ca-3bb7e9f14249"
}
], - "displayName": "View layouts"
}, - "relations": {
- "self": {
- "type": "clientProfiles",
- "id": "210ff07d-91e6-48f4-8ade-ae79d29d749e"
}
}
}
], - "compressors": [
- {
- "aviGenerationConfigData": "string",
- "aviGenerationDataRate": 97,
- "aviGenerationFlags": 0,
- "aviGenerationHandler": 1129730893,
- "aviGenerationKeyFrames": 10,
- "aviGenerationQuality": 75,
- "aviGenerationSelected": false,
- "displayName": "Microsoft Video 1",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "relations": {
- "self": {
- "type": "compressors",
- "id": "a4a1d500-36b9-46d5-965e-7adf1ff1897e"
}
}
}
], - "computerName": "DKTA-0810SK0016",
- "description": "System may have a long description",
- "displayName": "DKTA-0810SK0016",
- "domainName": "ta.rd.local",
- "eventTypeGroups": [
- {
- "analyticsEvents": [
- {
- "description": "AnalyticsEvent may have a long description",
- "displayName": "MyAnalyticsEvent",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyAnalyticsEvent",
- "sourceArray": [
- "string"
], - "relations": {
- "self": {
- "type": "analyticsEvents",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2"
}
}
}
], - "displayName": "Device - Predefined",
- "eventTypes": [
- {
- "builtIn": true,
- "counterEventID": "0ee90664-2924-42a0-a816-4129d0ecabdc",
- "description": "EventType may have a long description",
- "displayName": "Communication Stopped",
- "generatorGroupId": "string",
- "generatorGroupName": "string",
- "generatorID": "string",
- "generatorName": "string",
- "generatorSubtype": "string",
- "generatorType": "Device",
- "id": "6df795fa-2b74-48fe-9243-6c96f1104acd",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "CommunicationStopped",
- "occursGlobally": false,
- "sourceArray": [
- "string"
], - "sourceFilterArray": [
- "string"
], - "stateGroupId": "53b40c77-cf48-42a2-a432-db65ae3afc7a",
- "relations": {
- "self": {
- "type": "eventTypes",
- "id": "6df795fa-2b74-48fe-9243-6c96f1104acd"
}, - "parent": {
- "type": "eventTypeGroups",
- "id": "29101d41-f0d7-44be-8d14-5f21c57d6bf0"
}
}
}
], - "genericEvents": [
- {
- "dataSource": "GenericEventDataSource[6dfbcf65-fdbf-4f69-898b-f9251a51854d]",
- "displayName": "MyGenericEvent",
- "enabled": true,
- "expression": "\\\"abc\\\"",
- "expressionType": "0",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyGenericEvent",
- "priority": 100,
- "shadowId": "8adba830-9bb3-4234-b0cb-4e3d68356a96",
- "relations": {
- "self": {
- "type": "genericEvents",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c"
}
}
}
], - "userDefinedEvents": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "displayName": "Event Low",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Event Low",
- "subtype": "UserDefined",
- "relations": {
- "self": {
- "type": "userDefinedEvents",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1"
}
}
}
], - "relations": {
- "self": {
- "type": "eventTypeGroups",
- "id": "29101d41-f0d7-44be-8d14-5f21c57d6bf0"
}
}
}
], - "evidenceLockProfiles": [
- {
- "displayName": "Default evidence lock profile",
- "id": "231ee2e9-b527-494d-bc14-c5eda3745681",
- "name": "Default evidence lock profile",
- "retentionTimeOptions": [
- "string"
], - "relations": {
- "self": {
- "type": "evidenceLockProfiles",
- "id": "231ee2e9-b527-494d-bc14-c5eda3745681"
}
}
}
], - "failoverGroups": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "FailoverGroup may have a long description",
- "displayName": "MyFailoverGroup",
- "failoverRecorders": [
- {
- "activeWebServerUri": "string",
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "databasePath": "myDatabasePath",
- "description": "FailoverRecorder may have a long description",
- "displayName": "groupLevelFailover",
- "enabled": true,
- "hostName": "servertest",
- "id": "2b0bd2b2-aac8-40f5-b723-0c309f7b02eb",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "multicastServerAddress": "0.0.0.0",
- "name": "groupLevelFailover",
- "portNumber": 7563,
- "position": 0,
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "udpPort": 1111,
- "relations": {
- "self": {
- "type": "failoverRecorders",
- "id": "2b0bd2b2-aac8-40f5-b723-0c309f7b02eb"
}, - "parent": {
- "type": "failoverGroups",
- "id": "363c3fad-f404-49d2-baf4-a020ab50712c"
}
}
}
], - "id": "363c3fad-f404-49d2-baf4-a020ab50712c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyFailoverGroup",
- "relations": {
- "self": {
- "type": "failoverGroups",
- "id": "363c3fad-f404-49d2-baf4-a020ab50712c"
}
}
}
], - "genericEventDataSources": [
- {
- "dataSourceAddressFamily": "Both",
- "dataSourceAllowed": "string",
- "dataSourceAllowed6": "string",
- "dataSourceEcho": "None",
- "dataSourceEncoding": 1252,
- "dataSourceLog": false,
- "dataSourcePort": 5555,
- "dataSourceProtocol": "Tcp",
- "dataSourceSeparator": "string",
- "displayName": "MyGenericEventDataSource",
- "enabled": true,
- "id": "311a6f1d-7fa8-4bff-8daa-8850a08a6498",
- "name": "MyGenericEventDataSource",
- "relations": {
- "self": {
- "type": "genericEventDataSources",
- "id": "311a6f1d-7fa8-4bff-8daa-8850a08a6498"
}
}
}
], - "genericEvents": [
- {
- "dataSource": "GenericEventDataSource[6dfbcf65-fdbf-4f69-898b-f9251a51854d]",
- "displayName": "MyGenericEvent",
- "enabled": true,
- "expression": "\\\"abc\\\"",
- "expressionType": "0",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyGenericEvent",
- "priority": 100,
- "shadowId": "8adba830-9bb3-4234-b0cb-4e3d68356a96",
- "relations": {
- "self": {
- "type": "genericEvents",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c"
}
}
}
], - "gisMapLocations": [
- {
- "color": "#FFFF00AE",
- "displayName": "MyGisMapLocation",
- "id": "42bb29be-4bb2-4b59-986a-6314ce59569c",
- "name": "MyGisMapLocation",
- "positionX": 42,
- "positionY": 84,
- "scale": 1,
- "relations": {
- "self": {
- "type": "gisMapLocations",
- "id": "42bb29be-4bb2-4b59-986a-6314ce59569c"
}
}
}
], - "id": "00645af0-db75-40c2-82cc-2ad2e820aca9",
- "inputEventGroups": [
- {
- "builtIn": false,
- "description": "InputEventGroup may have a long description",
- "displayName": "Input Group 1",
- "id": "3f28850e-21be-45e1-bf27-607d8b930c75",
- "inputEventGroups": [
- { }
], - "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- null
], - "relations": {
- "self": { },
- "parent": { }
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- null
], - "ptz": {
- "displayName": null,
- "pan": null,
- "ptzCenterAndZoomToRectangle": null,
- "ptzCenterOnPositionInView": null,
- "ptzCOMPort": null,
- "ptzDeviceID": null,
- "ptzDiagonalSupport": null,
- "ptzEnabled": null,
- "ptzHomeSupport": null,
- "ptzIpix": null,
- "ptzPresetConfiguration": null,
- "ptzProtocol": null,
- "tilt": null,
- "zoom": null
}, - "ptzSessionTimeouts": {
- "displayName": null,
- "manualPTZTimeout": null,
- "pausePatrollingTimeout": null,
- "reservedPTZTimeout": null
}, - "stream": [
- null
], - "relations": {
- "self": { },
- "parent": { }
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Input Group 1",
- "relations": {
- "self": {
- "type": "inputEventGroups",
- "id": "3f28850e-21be-45e1-bf27-607d8b930c75"
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "lastStatusHandshake": "2022-05-23T09:24:58.9130000+02:00",
- "layoutGroups": [
- {
- "description": "LayoutGroup may have a long description",
- "displayName": "4:3",
- "id": "b0e14cf5-0ead-4612-a2d0-9d071073c50d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "layouts": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "definitionXml": "<ViewLayout ViewLayoutType=\\\"VideoOS.RemoteClient.Application.Data.ViewLayouts.ViewLayoutCustom, VideoOS.RemoteClient.Application\\\" Id=\\\"e4391ae5-7d96-4a0f-835a-9019a73f269a\\\" ViewLayoutGroupId=\\\"7EB5B9CC-D56F-4785-BA72-4E71FADA8C6B\\\"><ViewLayoutIcon>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</ViewLayoutIcon><ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>1000</Width><Height>666</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>666</Y></Position><Size><Width>1000</Width><Height>333</Height></Size></ViewItem></ViewItems></ViewLayout>",
- "description": "Layout may have a long description",
- "displayName": "1 + 1",
- "id": "314254b7-be6b-4c5d-bf6b-aae579bf88c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "1 + 1",
- "relations": {
- "self": {
- "type": "layouts",
- "id": "314254b7-be6b-4c5d-bf6b-aae579bf88c0"
}, - "parent": {
- "type": "layoutGroups",
- "id": "b0e14cf5-0ead-4612-a2d0-9d071073c50d"
}
}
}
], - "name": "4:3",
- "relations": {
- "self": {
- "type": "layoutGroups",
- "id": "b0e14cf5-0ead-4612-a2d0-9d071073c50d"
}
}
}
], - "licenseInformations": [
- {
- "activationAutomatic": false,
- "careId": "string",
- "careLevel": "Premium",
- "displayName": "XProtect Corporate 2024 R2",
- "licenseDetails": [
- {
- "activated": "13",
- "changesWithoutActivation": "0 out of 0",
- "displayName": "Device License",
- "firstGraceExpirationDate": "Unrestricted",
- "graceExpired": "0",
- "inGrace": 0,
- "licenseType": "Device License",
- "note": "string",
- "notLicensed": "0",
- "pluginId": "00000000-0000-0000-0000-000000000000"
}
], - "licenseInstalledProducts": [
- {
- "carePlus": "2029-07-02T14:01:00.0000000Z",
- "carePremium": "2029-07-02T14:01:28.0000000Z",
- "displayName": "XProtect Corporate 2024 R2",
- "expirationDate": "Unrestricted",
- "pluginId": "00000000-0000-0000-0000-000000000000",
- "productDisplayName": "XProtect Corporate 2024 R2",
- "slc": "M01-C01-242-01-6C42E9"
}
], - "licenseOverviewAll": [
- {
- "activated": "13 out of 5000",
- "displayName": "Device License",
- "licenseType": "Device License",
- "pluginId": "00000000-0000-0000-0000-000000000000"
}
], - "productionEnvironment": "wtst",
- "sku": "XPCO",
- "slc": "M01-C01-242-01-6C42E9",
- "licenseProperties": [
- {
- "displayName": "SmartClientProfiles",
- "parameters": [
- {
- "key": "string",
- "value": "string"
}
]
}
], - "relations": {
- "self": {
- "type": "licenseInformations",
- "id": "f0e83649-e1aa-4424-a5be-cd507d041cd6"
}
}
}
], - "loginProviders": [
- {
- "callbackPath": "/signin-oidc",
- "clientId": "ms.idp",
- "clientSecret": "string",
- "clientSecretHasValue": true,
- "displayName": "TA External Provider",
- "enabled": true,
- "id": "cb707285-8180-49d3-89c9-2916186be755",
- "name": "TA External Provider",
- "promptForLogin": true,
- "registeredClaims": [
- {
- "caseSensitive": false,
- "displayName": "VMS role",
- "id": 1,
- "name": "vms_role",
- "relations": {
- "self": {
- "type": "registeredClaims",
- "id": "95206c2c-cf5f-46ca-9c64-4cb44b4e5a1e"
}, - "parent": {
- "type": "loginProviders",
- "id": "cb707285-8180-49d3-89c9-2916186be755"
}
}
}
], - "scopes": [
- "string"
], - "userNameClaimType": "string",
- "relations": {
- "self": {
- "type": "loginProviders",
- "id": "cb707285-8180-49d3-89c9-2916186be755"
}
}
}
], - "lprMatchLists": [
- {
- "customFields": "string",
- "displayName": "Unlisted license plate",
- "id": "55ae8798-1e4a-45c9-939a-d9a9ea444610",
- "name": "Unlisted license plate",
- "registrationNumbers": "string",
- "triggerEventList": [
- {
- "type": "outputs",
- "id": "aa25e56d-5065-4449-beed-bb724fb55ecc"
}
], - "relations": {
- "self": {
- "type": "lprMatchLists",
- "id": "55ae8798-1e4a-45c9-939a-d9a9ea444610"
}
}
}
], - "mailNotificationProfiles": [
- {
- "description": "MailNotificationProfile may have a long description",
- "displayName": "My mail notification profile2",
- "embedImages": true,
- "frameRate": 25,
- "id": "19d8f6ba-324f-4eed-8861-0e3f8763210d",
- "includeAVI": true,
- "includeImages": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "messageText": "My mail notification profile message",
- "name": "My mail notification profile2",
- "numberOfImages": 1,
- "recipients": [
- "string"
], - "subject": "My mail notification profile subject",
- "timeAfterEvent": 1,
- "timeBeforeEvent": 1,
- "timeBetweenImages": 1,
- "timeBetweenMails": 1,
- "relations": {
- "self": {
- "type": "mailNotificationProfiles",
- "id": "19d8f6ba-324f-4eed-8861-0e3f8763210d"
}
}
}
], - "masterSiteAddress": "string",
- "matrix": [
- {
- "address": "localhost",
- "description": "Matrix may have a long description",
- "displayName": "MyMatrix",
- "id": "4cb572c6-20af-4dba-a000-0b6104285607",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyMatrix",
- "password": "string",
- "port": 12345,
- "relations": {
- "self": {
- "type": "matrix",
- "id": "4cb572c6-20af-4dba-a000-0b6104285607"
}
}
}
], - "metadataGroups": [
- {
- "builtIn": false,
- "description": "MetadataGroup may have a long description",
- "displayName": "Metadata Group 1",
- "id": "b37f4500-1dd1-4995-bafa-baf09c9f64ec",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- null
], - "shortcut": 0,
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- null
], - "relations": {
- "self": { },
- "parent": { }
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- null
], - "ptz": {
- "displayName": null,
- "pan": null,
- "ptzCenterAndZoomToRectangle": null,
- "ptzCenterOnPositionInView": null,
- "ptzCOMPort": null,
- "ptzDeviceID": null,
- "ptzDiagonalSupport": null,
- "ptzEnabled": null,
- "ptzHomeSupport": null,
- "ptzIpix": null,
- "ptzPresetConfiguration": null,
- "ptzProtocol": null,
- "tilt": null,
- "zoom": null
}, - "ptzSessionTimeouts": {
- "displayName": null,
- "manualPTZTimeout": null,
- "pausePatrollingTimeout": null,
- "reservedPTZTimeout": null
}, - "stream": [
- null
], - "relations": {
- "self": { },
- "parent": { }
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "metadataGroups": [
- { }
], - "name": "Metadata Group 1",
- "relations": {
- "self": {
- "type": "metadataGroups",
- "id": "b37f4500-1dd1-4995-bafa-baf09c9f64ec"
}
}
}
], - "microphoneGroups": [
- {
- "builtIn": false,
- "description": "MicrophoneGroup may have a long description",
- "displayName": "Microphone Group",
- "id": "db393d9d-3008-4307-8e41-408dd7f920d5",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "microphoneGroups": [
- { }
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- null
], - "shortcut": 0,
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- null
], - "relations": {
- "self": { },
- "parent": { }
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- null
], - "ptz": {
- "displayName": null,
- "pan": null,
- "ptzCenterAndZoomToRectangle": null,
- "ptzCenterOnPositionInView": null,
- "ptzCOMPort": null,
- "ptzDeviceID": null,
- "ptzDiagonalSupport": null,
- "ptzEnabled": null,
- "ptzHomeSupport": null,
- "ptzIpix": null,
- "ptzPresetConfiguration": null,
- "ptzProtocol": null,
- "tilt": null,
- "zoom": null
}, - "ptzSessionTimeouts": {
- "displayName": null,
- "manualPTZTimeout": null,
- "pausePatrollingTimeout": null,
- "reservedPTZTimeout": null
}, - "stream": [
- null
], - "relations": {
- "self": { },
- "parent": { }
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "name": "Microphone Group",
- "relations": {
- "self": {
- "type": "microphoneGroups",
- "id": "db393d9d-3008-4307-8e41-408dd7f920d5"
}
}
}
], - "mipKinds": [
- {
- "dataVersion": 1,
- "displayName": "Incident properties",
- "displayOnGisMap": true,
- "id": "c5d5ab61-9eee-425a-96e9-62e08cac6b0f",
- "kindType": "ITEM",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "mipItems": [
- {
- "__Encrypt": false,
- "displayName": "Incident projects",
- "enabled": true,
- "GisPoint": "POINT EMPTY",
- "Id": "77F8F2A9-9DE8-4048-8D63-26BF44DCCED1",
- "LastModified": "2024-08-18T07:12:54.6400000Z",
- "mipItems": [
- { }
], - "Name": "Incident projects",
- "relations": {
- "self": {
- "type": "mipItems",
- "id": "9f44adfa-ceab-427a-b669-fc79cbcf04c9"
}, - "parent": {
- "type": "mipKinds",
- "id": "c5d5ab61-9eee-425a-96e9-62e08cac6b0f"
}
}
}
], - "modifiedUser": "TA\\TATest",
- "name": "Incident properties",
- "parentKind": "00000000-0000-0000-0000-000000000000",
- "pluginId": "6053b0b4-3e97-4a86-8e46-d1a9ce807ed1",
- "pluginName": "XProtect Incident Manager",
- "securityAction": "string",
- "relations": {
- "self": {
- "type": "mipKinds",
- "id": "c5d5ab61-9eee-425a-96e9-62e08cac6b0f"
}
}
}
], - "name": "DKTA-0810SK0016",
- "outputGroups": [
- {
- "builtIn": false,
- "description": "OutputGroup may have a long description",
- "displayName": "Test Driver Camera 1",
- "id": "806ebe93-aa00-4476-99ea-9e44418a7acd",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Camera 1",
- "outputGroups": [
- { }
], - "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- null
], - "relations": {
- "self": { },
- "parent": { }
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- null
], - "ptz": {
- "displayName": null,
- "pan": null,
- "ptzCenterAndZoomToRectangle": null,
- "ptzCenterOnPositionInView": null,
- "ptzCOMPort": null,
- "ptzDeviceID": null,
- "ptzDiagonalSupport": null,
- "ptzEnabled": null,
- "ptzHomeSupport": null,
- "ptzIpix": null,
- "ptzPresetConfiguration": null,
- "ptzProtocol": null,
- "tilt": null,
- "zoom": null
}, - "ptzSessionTimeouts": {
- "displayName": null,
- "manualPTZTimeout": null,
- "pausePatrollingTimeout": null,
- "reservedPTZTimeout": null
}, - "stream": [
- null
], - "relations": {
- "self": { },
- "parent": { }
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "relations": {
- "self": {
- "type": "outputGroups",
- "id": "806ebe93-aa00-4476-99ea-9e44418a7acd"
}
}
}
], - "owner": [
- {
- "displayName": "Basic Information",
- "relations": {
- "self": {
- "type": "owner",
- "id": "f0ad19f5-3d26-4fde-a31f-92e8195f480a"
}
}
}
], - "physicalMemory": 0,
- "platform": "[Not Available]",
- "processors": 0,
- "recordingServers": [
- {
- "activeWebServerUri": "string",
- "description": "RecordingServer may have a long description",
- "displayName": "DKTA-0810SK0016",
- "enabled": true,
- "hardware": [
- {
- "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- null
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- null
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- null
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- null
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- null
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- null
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- null
], - "ptzEnabled": false,
- "ptzPresets": [
- null
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": null,
- "id": null
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- null
], - "shortName": "string",
- "streams": [
- null
], - "relations": {
- "self": { },
- "parent": { }
}
}
], - "customProperties": [
- {
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "description": "Hardware may have a long description",
- "displayName": "MultiStream Hardware",
- "enabled": true,
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- null
], - "relations": {
- "self": { },
- "parent": { }
}
}
], - "hardwareDriverPath": {
- "type": "hardwareDrivers",
- "id": "699dd024-4119-4e3d-b7dd-e2b371d18d79"
}, - "hardwareDriverSettings": [
- {
- "displayName": "Settings",
- "hardwarePtz": {
- "displayName": null,
- "ptzUsePtzDeviceID": null
}, - "relations": {
- "self": { },
- "parent": { }
}
}
], - "hardwarePtzSettings": [
- {
- "displayName": "PTZ",
- "hardwarePtzDeviceSettings": [
- null
], - "relations": {
- "self": { },
- "parent": { }
}
}
], - "id": "965c4a97-449a-4b4b-b772-e50e7b44f700",
- "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- null
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- null
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- null
], - "shortName": "string",
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- null
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- null
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- null
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": null,
- "id": null
}, - "settings": [
- null
], - "shortName": "string",
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- null
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- null
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- null
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": null,
- "id": null
}, - "settings": [
- null
], - "shortName": "string",
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "model": "StableFPS_T800",
- "name": "MultiStream Hardware",
- "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- null
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- null
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- null
], - "shortName": "string",
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "passwordLastModified": "2022-05-23T09:24:58.9130000+02:00",
- "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- null
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- null
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- null
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": null,
- "id": null
}, - "settings": [
- null
], - "shortName": "string",
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "userName": "admin",
- "relations": {
- "self": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "hardwareDrivers": [
- {
- "displayName": "Mobotix M/D/V/S series",
- "driverRevision": "1.62",
- "driverType": "DevicePack",
- "driverVersion": "DevicePack: 13.2a, Device Pack, Build: Unknown",
- "groupName": "Mobotix",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97",
- "name": "Mobotix M/D/V/S series",
- "number": 86,
- "useCount": 0,
- "relations": {
- "self": {
- "type": "hardwareDrivers",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "hostName": "dkta-0810sk0016.ta.rd.local",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "multicastServerAddress": "0.0.0.0",
- "name": "DKTA-0810SK0016",
- "portNumber": 7563,
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "recordingServerFailovers": [
- {
- "displayName": "Failover settings",
- "failoverPort": 11000,
- "hotStandby": "FailoverRecorder[639DEDEB-FFA4-4449-8588-826061E895FF]",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9",
- "primaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "secondaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "relations": {
- "self": {
- "type": "recordingServerFailovers",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "recordingServerMulticasts": [
- {
- "displayName": "Multicast",
- "enabled": true,
- "id": "536c696f-29c3-4be8-8e35-be5720192620",
- "iPAddressEnd": "232.100.1.0",
- "iPAddressStart": "232.100.1.0",
- "MTU": "1500",
- "portRangeEnd": 47199,
- "portRangeStart": 47100,
- "TTL": "32",
- "relations": {
- "self": {
- "type": "recordingServerMulticasts",
- "id": "536c696f-29c3-4be8-8e35-be5720192620"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "shutdownOnStorageFailure": false,
- "storages": [
- {
- "archiveStorages": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": null,
- "activeStartTimeOfDay": null,
- "displayName": null,
- "frequencyInterval": null,
- "frequencyRecurrenceFactor": null,
- "frequencyRelativeInterval": null,
- "frequencySubDayInterval": null,
- "frequencySubDayType": null,
- "frequencyType": null
}, - "relations": {
- "self": { },
- "parent": { }
}
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Storage may have a long description",
- "diskPath": "c:\\encryptedStorage",
- "displayName": "encryptedStorage",
- "encryptionMethod": "Light",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949",
- "isDefault": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "name": "encryptedStorage",
- "retainMinutes": 30,
- "signing": false,
- "relations": {
- "self": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "synchronizationTime": -1,
- "timeZoneName": "Romance Standard Time",
- "version": "24.2.12065.1",
- "relations": {
- "self": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "roles": [
- {
- "allowMobileClientLogOn": true,
- "allowSmartClientLogOn": true,
- "allowWebClientLogOn": true,
- "claims": [
- {
- "claimName": "vms_role",
- "claimProvider": "a873a5bb-ad32-47cb-bebc-6a95f9252e90",
- "claimValue": "admin",
- "displayName": "admin"
}
], - "description": "Role may have a long description",
- "displayName": "Default Role",
- "dualAuthorizationRequired": false,
- "id": "4a6c31be-631c-48a7-b5bd-f8d65291c8d8",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "makeUsersAnonymousDuringPTZSession": false,
- "name": "Default Role",
- "roleType": "UserDefined",
- "users": [
- {
- "accountName": "Bob",
- "description": "User may have a long description",
- "displayName": "Bob",
- "domain": "[BASIC]",
- "identityType": "BasicUser",
- "memberOf": "string",
- "memberOfRoles": "string",
- "members": "string",
- "sid": "083BDFD6-F583-4F6B-BDFE-5819D287C243",
- "relations": {
- "self": {
- "type": "users",
- "id": "71456a60-cf20-4764-a7a0-a1f89ca56546"
}, - "parent": {
- "type": "users",
- "id": "71456a60-cf20-4764-a7a0-a1f89ca56546"
}
}
}
], - "relations": {
- "self": {
- "type": "roles",
- "id": "4a6c31be-631c-48a7-b5bd-f8d65291c8d8"
}
}
}
], - "rules": [
- {
- "always": true,
- "daysOfWeek": false,
- "description": "Rule may have a long description",
- "displayName": "Default Start Audio Feed Rule",
- "enabled": true,
- "failoverActive": false,
- "failoverInactive": false,
- "id": "43609ca5-bfdd-4238-88ff-686b6657138f",
- "name": "Default Start Audio Feed Rule",
- "outsideTimeProfile": false,
- "startActions": "StartFeed",
- "startRuleType": "TimeInterval",
- "stopActions": "StopFeed",
- "stopRuleType": "TimeInterval",
- "timeOfDayBetween": false,
- "withinTimeProfile": false,
- "relations": {
- "self": {
- "type": "rules",
- "id": "43609ca5-bfdd-4238-88ff-686b6657138f"
}
}
}
], - "saveSearches": [
- {
- "availability": "Public",
- "description": "SaveSearches may have a long description",
- "displayName": "MySaveSearch",
- "id": "6815cc27-524e-4664-8d1c-28041e28a4d4",
- "includesScopeItems": false,
- "name": "MySaveSearch",
- "searchQuery": "searchQuery",
- "relations": {
- "self": {
- "type": "saveSearches",
- "id": "6815cc27-524e-4664-8d1c-28041e28a4d4"
}
}
}
], - "serviceAccount": "S-1-5-20",
- "speakerGroups": [
- {
- "builtIn": false,
- "description": "SpeakerGroup may have a long description",
- "displayName": "Speaker Group",
- "id": "097b561d-e5b4-4c73-be5e-8289a3df0390",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Speaker Group",
- "speakerGroups": [
- { }
], - "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- null
], - "shortcut": 0,
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- null
], - "relations": {
- "self": { },
- "parent": { }
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- null
], - "ptz": {
- "displayName": null,
- "pan": null,
- "ptzCenterAndZoomToRectangle": null,
- "ptzCenterOnPositionInView": null,
- "ptzCOMPort": null,
- "ptzDeviceID": null,
- "ptzDiagonalSupport": null,
- "ptzEnabled": null,
- "ptzHomeSupport": null,
- "ptzIpix": null,
- "ptzPresetConfiguration": null,
- "ptzProtocol": null,
- "tilt": null,
- "zoom": null
}, - "ptzSessionTimeouts": {
- "displayName": null,
- "manualPTZTimeout": null,
- "pausePatrollingTimeout": null,
- "reservedPTZTimeout": null
}, - "stream": [
- null
], - "relations": {
- "self": { },
- "parent": { }
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "relations": {
- "self": {
- "type": "speakerGroups",
- "id": "097b561d-e5b4-4c73-be5e-8289a3df0390"
}
}
}
], - "stateGroups": [
- {
- "displayName": "Live FPS",
- "id": "14a4425c-7410-48c8-b08b-f3f2c0d843ce",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Live FPS",
- "states": [
- "string"
], - "relations": {
- "self": {
- "type": "stateGroups",
- "id": "14a4425c-7410-48c8-b08b-f3f2c0d843ce"
}
}
}
], - "synchronizationStatus": 0,
- "systemAddresses": [
- {
- "addressType": "Internal",
- "relations": {
- "self": {
- "type": "systemAddresses",
- "id": "99b5bd81-ffbe-456d-b9d6-877e605440ea"
}
}
}
], - "timeProfiles": [
- {
- "description": "TimeProfile may have a long description",
- "displayName": "Day Length Time Profile",
- "id": "da463d61-0d95-42a7-a063-918387743029",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Day Length Time Profile",
- "sunclockGPSCoordinate": "N55 00 E08 50",
- "sunclockSunRise": 0,
- "sunclockSunSet": 0,
- "sunclockTimeZone": "Romance Standard Time",
- "timeProfileType": "Sunclock",
- "timeProfileAppointmentRecur": [
- {
- "allDayEvent": false,
- "appointmentRootId": "450f9a4c-273b-47f0-aea5-b7b36b46a5a0",
- "displayName": "My recurring appointment",
- "endDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "recurrenceDescription": "Occurs every day effective 8/19/2024 until 8/19/2124 from 10:54 AM to 11:54 AM.",
- "recurrenceOccurrenceDuration": "01:00:00",
- "recurrenceOccurrenceStartTime": "10:54:01",
- "recurrencePatternDayOfMonth": 23,
- "recurrencePatternDaysOfWeek": 127,
- "recurrencePatternFrequency": "Daily",
- "recurrencePatternInterval": 1,
- "recurrencePatternMonthOfYear": 9,
- "recurrencePatternOccurrenceOfDayInMonth": "Fourth",
- "recurrencePatternType": "Calculated",
- "recurrenceRangeEndDate": "2022-05-23T09:24:58.9130000+02:00",
- "recurrenceRangeLimit": "LimitByDate",
- "recurrenceRangeMaxOccurrences": 10,
- "recurrenceRangeStartDate": "2022-05-23T09:24:58.9130000+02:00",
- "startDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "subject": "My recurring appointment"
}
], - "timeProfileAppointmentRoot": [
- {
- "allDayEvent": false,
- "displayName": "My appointment",
- "endDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "originalStartDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "startDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "subject": "My appointment"
}
], - "relations": {
- "self": {
- "type": "timeProfiles",
- "id": "da463d61-0d95-42a7-a063-918387743029"
}
}
}
], - "timeZone": "Romance Standard Time",
- "toolOptions": [
- {
- "deviceErrorTimeoutSec": "0",
- "displayName": "Recording Server options",
- "pausePatrollingTimeoutSec": 600,
- "ptzManualSessionTimeoutSec": 15,
- "ptzReservedSessionTimeoutSec": 3600,
- "ptzUseDefaultPresetAsPtzHome": false,
- "relations": {
- "self": {
- "type": "toolOptions",
- "id": "ec9c3acc-518e-4cfd-931b-7ee69925b82c"
}
}
}
], - "userDefinedEvents": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "displayName": "Event Low",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Event Low",
- "subtype": "UserDefined",
- "relations": {
- "self": {
- "type": "userDefinedEvents",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1"
}
}
}
], - "version": "24.2.0.1",
- "videoWalls": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "VideoWall may have a long description",
- "displayName": "My wall",
- "height": 200,
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "monitors": [
- {
- "aspectRatio": "Aspect4x3",
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Monitor may have a long description",
- "displayName": "Front desk monitor",
- "emptyViewItems": "Preserve",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f",
- "insertionMethod": "Linked",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "locationX": 0,
- "locationY": 0,
- "monitorPresets": [
- {
- "definitionXml": "<view viewlayouttype=\\\"VideoOS.RemoteClient.Application.Data.ViewLayouts.ViewLayout5x5, VideoOS.RemoteClient.Application\\\" shortcut=\\\"\\\" displayname=\\\"Night\\\" id=\\\"f1e9dcfd-7353-4d26-9475-22800c41d796\\\"><viewitems><viewitem id=\\\"d1001d9e-2b18-46b0-a94e-e354cd50a26c\\\" shortcut=\\\"\\\" displayname=\\\"LPR camera\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\"><iteminfo lastknowncameradisplayname=\\\"LPR camera\\\" cameraid=\\\"16482501-1319-440f-967b-0fc076ba7667\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" ipixsplitmode=\\\"0\\\" keepimagequalitywhenmaximized=\\\"False\\\" maintainimageaspectratio=\\\"True\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" /><properties /></viewitem><viewitem id=\\\"e1473120-02ed-449f-bda6-9497568ce546\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"69199daa-86a7-4635-bc6f-cbc51fe558c6\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"546ba8b8-9482-44e4-abcc-b1d0dc14c155\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"ec210df8-c22a-434e-86e2-b725e76559df\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"95a39cf2-f405-4f67-8a55-72b0c0f5f38a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a68489af-6a9f-46e2-8634-05e1f41e111d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"7d66ee08-dba7-4517-b2b5-f9209d9b24c4\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"198cfe1d-7431-49e0-92ec-c1e86b56a007\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"c697cc7c-a9be-4de8-a921-02e7d7eb2d35\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"b9afb702-ac3d-4e2a-9eed-670db1163c43\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"711bcf13-b31b-42be-8079-f53c3ca278de\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2fbd75f7-7a1a-4bd0-a670-b13d9a8a9773\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"1442394e-9d1e-49d6-b00c-5bae1612ba5a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"928d5bdd-65c2-4d36-9970-34798bcaca4b\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"78ad23d0-81ca-4ebb-90d0-a0769b4684c1\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a662932e-0ee5-4c39-93f0-eb19f481cbad\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"8ee8af16-6408-4319-bb29-6999e7b8c588\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2004163d-5499-47b7-a0e0-873d1e16c92d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"820ebb51-3112-42d5-9ef8-9902052b0cab\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"07010b7c-758e-4ac0-9f01-0451429700d5\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"27dc28f4-e89e-44c2-a7cc-d4b08cf0c727\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"72131cb8-4e56-459c-863f-549bb17dad07\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"0086d81b-1e3c-4cc5-8c24-86f32768dd0a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"f55568ff-7158-418a-a56e-80e437cdf875\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem></viewitems><properties><property value=\\\"<ViewLayout><Icon>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</Icon><ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem></ViewItems></ViewLayout>\\\" name=\\\"LayoutPropperty\\\" /></properties></view>",
- "displayName": "Night",
- "id": "23b6c495-5fbd-4f4e-9a44-23d3e55f7adc",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Night",
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "monitorSize": 20,
- "monitorState": "string",
- "name": "Front desk monitor",
- "noLayout": "Preserve",
- "view": {
- "type": "views",
- "id": "01c5dada-2530-439c-9a2f-08af5dd45813"
}, - "relations": {
- "self": {
- "type": "monitors",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f"
}, - "parent": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
], - "name": "My wall",
- "statusText": true,
- "titleBar": "None",
- "videoWallPresets": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "VideoWallPreset may have a long description",
- "displayName": "Night",
- "id": "3cc421f4-f20e-4254-a472-425ded951bc4",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Night",
- "relations": {
- "self": {
- "type": "videoWallPresets",
- "id": "3cc421f4-f20e-4254-a472-425ded951bc4"
}, - "parent": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
], - "width": 200,
- "relations": {
- "self": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
], - "viewGroups": [
- {
- "description": "ViewGroup may have a long description",
- "displayName": "Basic User Group",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Basic User Group",
- "viewGroupDataXml": "string",
- "viewGroups": [
- { }
], - "views": [
- {
- "displayName": "2x1 Audio",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "layoutCustomId": "string",
- "layoutIcon": "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",
- "layoutViewItems": "<ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem><ViewItem><Position><X>500</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem></ViewItems>",
- "name": "2x1 Audio",
- "shortcut": "string",
- "viewLayoutType": "string",
- "viewItem": [
- {
- "displayName": "Index 0",
- "viewItemDefinitionXml": "<viewitem id=\\\"f11ff2f9-6e20-4e50-8528-e6b27b4f9a0b\\\" displayname=\\\"Camera ViewItem\\\" shortcut=\\\"\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\" smartClientId=\\\"8B1A85EF-9A4E-4CD8-9214-85EA148676BD\\\"><iteminfo cameraid=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" lastknowncameradisplayname=\\\"Mini Sequencer camera\\\" livestreamid=\\\"00000000-0000-0000-0000-000000000000\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" maintainimageaspectratio=\\\"True\\\" usedefaultdisplaysettings=\\\"True\\\" showtitlebar=\\\"True\\\" keepimagequalitywhenmaximized=\\\"False\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" pointandclickmode=\\\"0\\\" usingproperties=\\\"True\\\" /><properties><property name=\\\"cameraid\\\" value=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" /><property name=\\\"framerate\\\" value=\\\"0\\\" /><property name=\\\"imagequality\\\" value=\\\"100\\\" /><property name=\\\"lastknowncameradisplayname\\\" value=\\\"Mini Sequencer camera\\\" /></properties></viewitem>",
- "viewItemPosition": 0
}
], - "relations": {
- "self": {
- "type": "views",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208"
}, - "parent": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}
], - "relations": {
- "self": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}
], - "relations": {
- "self": {
- "type": "sites",
- "id": "00645af0-db75-40c2-82cc-2ad2e820aca9"
}
}
}
]
}
Management Server
task required | string Example: task=UploadFileChunk task=LoadTasks, or task=ClientLogOnSupported, or task=UploadFileChunk LoadTasks - Load the tasks existing on the server ClientLogOnSupported - Client application login supported UploadFileChunk - Upload file chunk |
clientApplicationType | string Client application type. Specifies the type of client application |
userName | string User name. User name for the hardware |
{- "clientApplicationType": "string",
- "userName": "string"
}
{- "result": {
- "state": "Success",
- "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": "fisheyeLens",
- "id": "d0ae3832-344b-4886-a699-3a74d2465a85"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": "motionDetections",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": "privacyProtections",
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": "ptzPresets",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": true,
- "displayName": "Video stream 1",
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "storages": [
- {
- "archiveStorages": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "displayName": "ArchiveSchedule",
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": "archiveStorages",
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d"
}, - "parent": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}
}
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Storage may have a long description",
- "diskPath": "c:\\encryptedStorage",
- "displayName": "encryptedStorage",
- "encryptionMethod": "Light",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949",
- "isDefault": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "name": "encryptedStorage",
- "retainMinutes": 30,
- "signing": false,
- "relations": {
- "self": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "recordingServers": [
- {
- "activeWebServerUri": "string",
- "description": "RecordingServer may have a long description",
- "displayName": "DKTA-0810SK0016",
- "enabled": true,
- "hardware": [
- {
- "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": null,
- "enabled": null,
- "fisheyeFieldOfView": null,
- "orientation": null,
- "registeredPanomorphLens": null,
- "registeredPanomorphLensNumber": null,
- "relations": { }
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": null,
- "displayName": null,
- "enabled": null,
- "excludeRegions": null,
- "generateMotionMetadata": null,
- "gridSize": null,
- "hardwareAccelerationMode": null,
- "id": null,
- "keyframesOnly": null,
- "manualSensitivity": null,
- "manualSensitivityEnabled": null,
- "processTime": null,
- "threshold": null,
- "useExcludeRegions": null,
- "relations": { }
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": null,
- "description": null,
- "displayName": null,
- "endPresetId": null,
- "endSpeed": null,
- "endTransitionTime": null,
- "id": null,
- "initSpeed": null,
- "initTransitionTime": null,
- "name": null,
- "patrollingEntry": [ ],
- "relations": { }
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": null,
- "enabled": null,
- "id": null,
- "privacyMaskXml": null,
- "relations": { }
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": null,
- "description": null,
- "devicePreset": null,
- "devicePresetInternalId": null,
- "displayName": null,
- "id": null,
- "locked": null,
- "name": null,
- "pan": null,
- "tilt": null,
- "zoom": null,
- "relations": { }
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": null,
- "stream": [ ],
- "relations": { }
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Hardware may have a long description",
- "displayName": "MultiStream Hardware",
- "enabled": true,
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "hardwareDriverPath": {
- "type": "hardwareDrivers",
- "id": "699dd024-4119-4e3d-b7dd-e2b371d18d79"
}, - "hardwareDriverSettings": [
- {
- "displayName": "Settings",
- "hardwarePtz": {
- "displayName": "Pan-Tilt-Zoom",
- "ptzUsePtzDeviceID": true
}, - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "hardwarePtzSettings": [
- {
- "displayName": "PTZ",
- "hardwarePtzDeviceSettings": [
- {
- "displayName": null,
- "ptzCOMPort": null,
- "ptzDeviceID": null,
- "ptzEnabled": null,
- "ptzProtocol": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "id": "965c4a97-449a-4b4b-b772-e50e7b44f700",
- "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "model": "StableFPS_T800",
- "name": "MultiStream Hardware",
- "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "passwordLastModified": "2022-05-23T09:24:58.9130000+02:00",
- "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "userName": "admin",
- "relations": {
- "self": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "hardwareDrivers": [
- {
- "displayName": "Mobotix M/D/V/S series",
- "driverRevision": "1.62",
- "driverType": "DevicePack",
- "driverVersion": "DevicePack: 13.2a, Device Pack, Build: Unknown",
- "groupName": "Mobotix",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97",
- "name": "Mobotix M/D/V/S series",
- "number": 86,
- "useCount": 0,
- "relations": {
- "self": {
- "type": "hardwareDrivers",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "hostName": "dkta-0810sk0016.ta.rd.local",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "multicastServerAddress": "0.0.0.0",
- "name": "DKTA-0810SK0016",
- "portNumber": 7563,
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "recordingServerFailovers": [
- {
- "displayName": "Failover settings",
- "failoverPort": 11000,
- "hotStandby": "FailoverRecorder[639DEDEB-FFA4-4449-8588-826061E895FF]",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9",
- "primaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "secondaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "relations": {
- "self": {
- "type": "recordingServerFailovers",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "recordingServerMulticasts": [
- {
- "displayName": "Multicast",
- "enabled": true,
- "id": "536c696f-29c3-4be8-8e35-be5720192620",
- "iPAddressEnd": "232.100.1.0",
- "iPAddressStart": "232.100.1.0",
- "MTU": "1500",
- "portRangeEnd": 47199,
- "portRangeStart": 47100,
- "TTL": "32",
- "relations": {
- "self": {
- "type": "recordingServerMulticasts",
- "id": "536c696f-29c3-4be8-8e35-be5720192620"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "shutdownOnStorageFailure": false,
- "storages": [
- {
- "archiveStorages": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "displayName": "ArchiveSchedule",
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Storage may have a long description",
- "diskPath": "c:\\encryptedStorage",
- "displayName": "encryptedStorage",
- "encryptionMethod": "Light",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949",
- "isDefault": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "name": "encryptedStorage",
- "retainMinutes": 30,
- "signing": false,
- "relations": {
- "self": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "synchronizationTime": -1,
- "timeZoneName": "Romance Standard Time",
- "version": "24.2.12065.1",
- "relations": {
- "self": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "tasks": [
- {
- "result": {
- "progress": "25",
- "errorCode": "61002",
- "errorText": "Something went wrong",
- "state": "Error",
- "path": "hardware/F29FEF78-E5EA-4DCF-B654-8F76886DD873"
}
}
]
}
}
Management Server
id required | string <guid> Example: 00645af0-db75-40c2-82cc-2ad2e820aca9 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "accessControlSystems": [
- {
- "accessControlUnits": [
- {
- "accessControlUnits": [
- { }
], - "displayName": "Controller 1",
- "id": "e4d81a4d-b0cc-4033-be19-2b50a4469548",
- "name": "Controller 1",
- "ruleGroup": "AccessControlRuleGroup[16F7C724-D91F-1443-1D8E-26F90A94FBB7]",
- "relations": {
- "self": {
- "type": "accessControlUnits",
- "id": "e4d81a4d-b0cc-4033-be19-2b50a4469548"
}, - "parent": {
- "type": "accessControlSystems",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
}
}
], - "displayName": "Test System",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6",
- "name": "Test System",
- "ruleGroup": "AccessControlRuleGroup[7142F91D-9959-0519-25B7-B47381590EE9]",
- "relations": {
- "self": {
- "type": "accessControlSystems",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
}
}
], - "alarmDefinitions": [
- {
- "assignableToAdmins": false,
- "autoClose": false,
- "category": "97bda9c2-bb15-4106-a59b-e72b193820ee",
- "description": "AlarmDefinition may have a long description",
- "disableEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "displayName": "Alarm High Priority",
- "enabled": true,
- "enableEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "enableRule": "0",
- "eventType": "0fcb1955-0e80-4fd4-a78a-db47ee89700c",
- "eventTypeGroup": "5946b6fa-44d9-4f4c-82bb-46a17b924265",
- "id": "9094284b-34c3-4e53-a3d7-8e7e3652567b",
- "managementTimeoutEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "managementTimeoutTime": "00:01:00",
- "mapType": "0",
- "name": "Alarm High Priority",
- "owner": "TA Test User (ta\\tatest)",
- "priority": "8188ff24-b5da-4c19-9ebf-c1d8fc2caa75",
- "relatedCameraList": [
- {
- "type": "cameras",
- "id": "abbe8d6b-765d-4a42-8e5c-14a2e5262df1"
}
], - "relatedMap": "00000000-0000-0000-0000-000000000000",
- "sourceList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "timeProfile": {
- "type": "timeProfiles",
- "id": "3a9a3f27-feb0-4781-85ba-0f6e7251eef1"
}, - "triggerEventlist": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "relations": {
- "self": {
- "type": "alarmDefinitions",
- "id": "9094284b-34c3-4e53-a3d7-8e7e3652567b"
}
}
}
], - "analyticsEvents": [
- {
- "description": "AnalyticsEvent may have a long description",
- "displayName": "MyAnalyticsEvent",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyAnalyticsEvent",
- "sourceArray": [
- "string"
], - "relations": {
- "self": {
- "type": "analyticsEvents",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2"
}
}
}
], - "basicUsers": [
- {
- "canChangePassword": true,
- "claims": [
- {
- "claimName": "vms_role",
- "claimProvider": "a873a5bb-ad32-47cb-bebc-6a95f9252e90",
- "claimValue": "admin",
- "displayName": "admin"
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "BasicUser may have a long description",
- "displayName": "Bob",
- "forcePasswordChange": false,
- "id": "3d7bc850-a0a9-465e-a362-b4d4c07c09b3",
- "isExternal": false,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "lockoutEnd": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bob",
- "sid": "083BDFD6-F583-4F6B-BDFE-5819D287C243",
- "status": "Enabled",
- "relations": {
- "self": {
- "type": "basicUsers",
- "id": "3d7bc850-a0a9-465e-a362-b4d4c07c09b3"
}
}
}
], - "cameraGroups": [
- {
- "builtIn": false,
- "cameraGroups": [
- { }
], - "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": null,
- "id": null
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": null,
- "order": null,
- "presetId": null,
- "waitTime": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": null,
- "displayName": null,
- "liveDefault": null,
- "liveMode": null,
- "name": null,
- "recordTo": null,
- "streamReferenceId": null,
- "useEdge": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "description": "CameraGroup may have a long description",
- "displayName": "Direct Show",
- "id": "815ee09f-312b-489b-b541-f16d2d1fc901",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Direct Show",
- "relations": {
- "self": {
- "type": "cameraGroups",
- "id": "815ee09f-312b-489b-b541-f16d2d1fc901"
}
}
}
], - "childSites": [
- {
- "childSites": [
- { }
], - "connectionState": "Attached",
- "description": "Site may have a long description",
- "displayName": "DKTA-0814SK0013",
- "id": "89b2eec5-8235-4382-8312-c55d87a7b510",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "serviceAccount": "S-1-5-20",
- "siteAddresses": [
- {
- "addressType": "Internal",
}
], - "synchronizationStatus": 201,
- "version": "24.2.0.1",
- "relations": {
- "self": {
- "type": "childSites",
- "id": "89b2eec5-8235-4382-8312-c55d87a7b510"
}
}
}
], - "clientProfiles": [
- {
- "description": "ClientProfile may have a long description",
- "displayName": "My profile",
- "id": "210ff07d-91e6-48f4-8ade-ae79d29d749e",
- "isDefaultProfile": false,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "My profile",
- "clientProfileAccessControl": {
- "displayName": "Access Control",
- "showAccessRequestNotifications": "Yes",
- "showAccessRequestNotificationsLocked": false
}, - "clientProfileAdvanced": {
- "advancedAdaptiveStreaming": "Disabled",
- "advancedAdaptiveStreamingLocked": false,
- "advancedDeinterlacing": "Default",
- "advancedDeinterlacingLocked": false,
- "advancedMaxDecodingThreads": "Auto",
- "advancedMaxDecodingThreadsLocked": false,
- "advancedMulticast": "Enabled",
- "advancedMulticastLocked": false,
- "advancedTimeZone": "LocalMachine",
- "advancedTimeZoneCustom": "Dateline Standard Time",
- "advancedTimeZoneCustomLocked": false,
- "advancedTimeZoneLocked": false,
- "advancedVideoPlayerDiagnosticLevel": "Level0",
- "advancedVideoPlayerDiagnosticLevelLocked": false,
- "advancedVideoPlayerHardwareDecodingMode": "Auto",
- "advancedVideoPlayerHardwareDecodingModeLocked": false,
- "displayName": "Advanced"
}, - "clientProfileAlarmManager": {
- "alarmManagerPlaySoundNotifications": "No",
- "alarmManagerPlaySoundNotificationsLocked": false,
- "alarmManagerShowDesktopNotifications": "No",
- "alarmManagerShowDesktopNotificationsLocked": false,
- "displayName": "Alarm Manager"
}, - "clientProfileExport": {
- "displayName": "Export",
- "exportDestinationType": "Both",
- "exportDestinationTypeLocked": false,
- "exportMergeAddPadding": "No",
- "exportMergeAddPaddingLocked": false,
- "exportMergeFormat": "MP4",
- "exportMergeFormatLocked": false,
- "exportMergeFramesPerSecond": "Fps30",
- "exportMergeFramesPerSecondLocked": false,
- "exportMergeMediaPlayerFormat": "Unavailable",
- "exportMergeMediaPlayerFormatLocked": true,
- "exportMergePreventUpscaling": "No",
- "exportMergePreventUpscalingLocked": false,
- "exportMergeQuality": "Medium",
- "exportMergeQualityLocked": false,
- "exportMergeResolution": "FullHD",
- "exportMergeResolutionLocked": false,
- "exportMergeVideoClipType": "Both",
- "exportMergeVideoClipTypeLocked": false,
- "exportPrivacyMask": "Available",
- "exportPrivacyMaskLocked": false,
- "exportSmartClientPlayerEncryptDatabases": "Yes",
- "exportSmartClientPlayerEncryptDatabasesLocked": true,
- "exportSmartClientPlayerEncryptionStrength": "AES256",
- "exportSmartClientPlayerEncryptionStrengthLocked": true,
- "exportSmartClientPlayerEncryptPassword": "string",
- "exportSmartClientPlayerEncryptPasswordLocked": false,
- "exportSmartClientPlayerFormat": "Available",
- "exportSmartClientPlayerFormatLocked": false,
- "exportSmartClientPlayerGlobalCommentsContent": "string",
- "exportSmartClientPlayerGlobalCommentsContentLocked": false,
- "exportSmartClientPlayerGlobalCommentsMode": "Optional",
- "exportSmartClientPlayerGlobalCommentsModeLocked": false,
- "exportSmartClientPlayerIncludePlayer": "Yes",
- "exportSmartClientPlayerIncludePlayerLocked": false,
- "exportSmartClientPlayerIndividualCommentsMode": "Optional",
- "exportSmartClientPlayerIndividualCommentsModeLocked": false,
- "exportSmartClientPlayerLockForReExport": "Yes",
- "exportSmartClientPlayerLockForReExportLocked": true,
- "exportSmartClientPlayerSignData": "Yes",
- "exportSmartClientPlayerSignDataLocked": true,
- "exportStillImageFormat": "Unavailable",
- "exportStillImageFormatLocked": true,
- "exportStillImageTimestamp": "No",
- "exportStillImageTimestampLocked": false,
- "exportVideoClipCodecProperties": "Available",
- "exportVideoClipCodecPropertiesLocked": false,
- "exportVideoClipFormat": "Unavailable",
- "exportVideoClipFormatLocked": true,
- "exportVideoClipFrameRate": "No",
- "exportVideoClipFrameRateLocked": false,
- "exportVideoClipOutputType": "MKV",
- "exportVideoClipOutputTypeLocked": true,
- "exportVideoClipTextsContent": "string",
- "exportVideoClipTextsContentLocked": false,
- "exportVideoClipTextsMode": "Optional",
- "exportVideoClipTimestamp": "No",
- "exportVideoClipTimestampLocked": false,
- "exportVideoClipType": "Both",
- "exportVideoClipTypeLocked": false,
- "functionsPlaybackExportPath": "Default",
- "functionsPlaybackExportPathCustom": "C:\\Export",
- "functionsPlaybackExportPathCustomLocked": false,
- "panesPlaybackExport": "Available"
}, - "clientProfileGeneral": {
- "alarmManagerTab": "Available",
- "applicationAutoLogin": "Available",
- "applicationEvidenceLock": "Available",
- "applicationExitButton": "Available",
- "applicationHideMousePointerTimeout": "Seconds_5",
- "applicationHideMousePointerTimeoutLocked": false,
- "applicationInactivityTimeout": 0,
- "applicationJoystickSetup": "Available",
- "applicationKeyboardSetup": "Available",
- "applicationLiftPrivacyMaskTimeout": "Minutes_30",
- "applicationLogoutButton": "Available",
- "applicationMaximizeButton": "Available",
- "applicationMinimizeButton": "Available",
- "applicationNewSCVersionText": "string",
- "applicationNewSCVersionWindow": "Show",
- "applicationOnlineHelp": "Available",
- "applicationOnlineHelpLocked": false,
- "applicationOptionsDialogButton": "Available",
- "applicationRememberPassword": "Available",
- "applicationSnapshotAvailability": "Available",
- "applicationSnapshotAvailabilityLocked": false,
- "applicationSnapshotPath": "c:\\Snapshots",
- "applicationSnapshotPathLocked": false,
- "applicationStartMode": "Last",
- "applicationStartModeLocked": false,
- "applicationStartView": "Last",
- "applicationStartViewLocked": false,
- "applicationTransactTab": "Available",
- "applicationVideoTutorials": "Available",
- "applicationVideoTutorialsLocked": false,
- "centralizedSearchMaxDeviceCount": "Count_100",
- "centralizedSearchTab": "Available",
- "displayName": "General",
- "generalApplicationMaximization": "NormalWindow",
- "generalApplicationMaximizationLocked": false,
- "generalCameraErrors": "BlackImageWithOverlay",
- "generalCameraErrorsLocked": false,
- "generalCameraStoppedMessage": "BlackImageWithOverlay",
- "generalCameraStoppedMessageLocked": false,
- "generalDefaultPtzPointAndClickMode": "VirtualJoystick",
- "generalDefaultPtzPointAndClickModeLocked": false,
- "generalDefaultVideoBuffer": "Standard",
- "generalDefaultVideoBufferLocked": false,
- "generalEmptySpaces": "CompanyLogo",
- "generalEmptySpacesLocked": false,
- "generalHtmlViewItemScripting": "Disabled",
- "generalServerErrors": "Hidden",
- "generalServerErrorsLocked": false,
- "generalTimeInTitlebar": "Show",
- "generalTimeInTitlebarLocked": false,
- "generalTitleBar": "Show",
- "generalTitleBarLocked": false,
- "generalViewGridSpacer": "Pixel1",
- "generalViewGridSpacerLocked": false,
- "systemMonitorTab": "Available",
- "viewsCustomLogoInEmptySpaces": "string"
}, - "clientProfileGisMap": {
- "displayName": "Smart map",
- "gisMapBingMapKey": "string",
- "gisMapBingMapKeyLocked": true,
- "gisMapCacheCleanUp": "OnScClose_IfFileNotUsed",
- "gisMapCacheCleanUpLocked": false,
- "gisMapCreateLayerLocation": "No",
- "gisMapCreateLayerLocationLocked": false,
- "gisMapGoogleMapClientId": "string",
- "gisMapGoogleMapClientIdLocked": true,
- "gisMapGoogleMapPrivateKey": "string",
- "gisMapGoogleMapPrivateKeyLocked": true,
- "gisMapGoogleMapSigningSecret": "string",
- "gisMapGoogleMapSigningSecretLocked": true,
- "gisMapOpenStreetMapAlternativeServer": "string",
- "gisMapOpenStreetMapAlternativeServerLocked": true,
- "gisMapOpenStreetMapGeographicLayer": "Unavailable",
- "gisMapOpenStreetMapGeographicLayerLocked": true
}, - "clientProfileLive": {
- "displayName": "Live",
- "functionsLiveBookmarkMode": "Quick",
- "functionsLiveBookmarkModeLocked": false,
- "functionsLiveBoundingBoxes": "Available",
- "functionsLiveBoundingBoxesLocked": false,
- "functionsLiveCameraPlayback": "Available",
- "functionsLiveCameraPlaybackLocked": false,
- "functionsLiveOverlayButtons": "Available",
- "functionsLiveOverlayButtonsLocked": false,
- "functionsLivePrintAvailability": "Available",
- "functionsLivePrintAvailabilityLocked": false,
- "panesLiveAudio": "Available",
- "panesLiveAudioLocked": false,
- "panesLiveEvents": "Available",
- "panesLiveEventsLocked": false,
- "panesLiveMIPPlugin": "Available",
- "panesLiveMIPPluginLocked": false,
- "panesLiveOutputs": "Available",
- "panesLiveOutputsLocked": false,
- "panesLiveSystemOverview": "Available",
- "panesLiveSystemOverviewLocked": false,
- "panesLiveTab": "Available",
- "panesLiveViews": "Available",
- "panesLiveViewsLocked": false
}, - "clientProfilePlayback": {
- "displayName": "Playback",
- "functionsPlaybackBookmarkMode": "Detail",
- "functionsPlaybackBookmarkModeLocked": false,
- "functionsPlaybackBoundingBoxes": "Available",
- "functionsPlaybackBoundingBoxesLocked": false,
- "functionsPlaybackIndependentPlayback": "Available",
- "functionsPlaybackPrintReportCopyRights": "Show",
- "functionsPlaybackPrintReportHeadline": "Default",
- "functionsPlaybackPrintReportHeadlineLocked": false,
- "functionsPlaybackPrintReportHeadlineText": "string",
- "functionsPlaybackPrintReportUserInformation": "Show",
- "panesPlaybackAudio": "Available",
- "panesPlaybackAudioLocked": false,
- "panesPlaybackMIPPlugin": "Available",
- "panesPlaybackMIPPluginLocked": false,
- "panesPlaybackPrint": "Available",
- "panesPlaybackPrintLocked": false,
- "panesPlaybackSystemOverview": "Available",
- "panesPlaybackSystemOverviewLocked": false,
- "panesPlaybackTab": "Available",
- "panesPlaybackViews": "Available",
- "panesPlaybackViewsLocked": false
}, - "clientProfileSetup": {
- "displayName": "Setup",
- "functionsSetupEnableVideoBufferingOption": "Available",
- "functionsSetupEnableVideoBufferingOptionLocked": false,
- "functionsSetupOverlayButtons": "Available",
- "functionsSetupOverlayButtonsLocked": false,
- "mapEditGisMap": "Available",
- "mapEditMaps": "Available",
- "panesSetupMIPPlugin": "Available",
- "panesSetupMIPPluginLocked": false,
- "panesSetupOverlayButtons": "Available",
- "panesSetupOverlayButtonsLocked": false,
- "panesSetupProperties": "Available",
- "panesSetupPropertiesLocked": false,
- "panesSetupSystemOverview": "Available",
- "panesSetupSystemOverviewLocked": false,
- "panesSetupTab": "Available",
- "panesSetupViews": "Available",
- "panesSetupViewsLocked": false
}, - "clientProfileTimeline": {
- "displayName": "Timeline",
- "timelineAllCamerasTimeline": "Show",
- "timelineAllCamerasTimelineLocked": false,
- "timelineBookmarks": "Show",
- "timelineBookmarksLocked": false,
- "timelineHideForNormalViewsTimeout": "Disabled",
- "timelineHideForNormalViewsTimeoutLocked": false,
- "timelineHideForSmartWallViewsTimeout": "Seconds_5",
- "timelineHideForSmartWallViewsTimeoutLocked": false,
- "timelineIncomingAudio": "Hide",
- "timelineIncomingAudioLocked": false,
- "timelineMipData": "Hide",
- "timelineMipDataLocked": false,
- "timelineMipMarker": "Hide",
- "timelineMipMarkerLocked": false,
- "timelineMotion": "Show",
- "timelineMotionLocked": false,
- "timelineOutgoingAudio": "Hide",
- "timelineOutgoingAudioLocked": false,
- "timelineSkipGaps": "DoSkipGaps",
- "timelineSkipGapsLocked": false
}, - "clientProfileViewLayouts": {
- "disabledViewLayouts": [
- {
- "type": "layouts",
- "id": "4514ed40-a3ee-4b47-94ca-3bb7e9f14249"
}
], - "displayName": "View layouts"
}, - "relations": {
- "self": {
- "type": "clientProfiles",
- "id": "210ff07d-91e6-48f4-8ade-ae79d29d749e"
}
}
}
], - "compressors": [
- {
- "aviGenerationConfigData": "string",
- "aviGenerationDataRate": 97,
- "aviGenerationFlags": 0,
- "aviGenerationHandler": 1129730893,
- "aviGenerationKeyFrames": 10,
- "aviGenerationQuality": 75,
- "aviGenerationSelected": false,
- "displayName": "Microsoft Video 1",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "relations": {
- "self": {
- "type": "compressors",
- "id": "a4a1d500-36b9-46d5-965e-7adf1ff1897e"
}
}
}
], - "computerName": "DKTA-0810SK0016",
- "description": "System may have a long description",
- "displayName": "DKTA-0810SK0016",
- "domainName": "ta.rd.local",
- "eventTypeGroups": [
- {
- "analyticsEvents": [
- {
- "description": "AnalyticsEvent may have a long description",
- "displayName": "MyAnalyticsEvent",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyAnalyticsEvent",
- "sourceArray": [
- "string"
], - "relations": {
- "self": {
- "type": "analyticsEvents",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2"
}
}
}
], - "displayName": "Device - Predefined",
- "eventTypes": [
- {
- "builtIn": true,
- "counterEventID": "0ee90664-2924-42a0-a816-4129d0ecabdc",
- "description": "EventType may have a long description",
- "displayName": "Communication Stopped",
- "generatorGroupId": "string",
- "generatorGroupName": "string",
- "generatorID": "string",
- "generatorName": "string",
- "generatorSubtype": "string",
- "generatorType": "Device",
- "id": "6df795fa-2b74-48fe-9243-6c96f1104acd",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "CommunicationStopped",
- "occursGlobally": false,
- "sourceArray": [
- "string"
], - "sourceFilterArray": [
- "string"
], - "stateGroupId": "53b40c77-cf48-42a2-a432-db65ae3afc7a",
- "relations": {
- "self": {
- "type": "eventTypes",
- "id": "6df795fa-2b74-48fe-9243-6c96f1104acd"
}, - "parent": {
- "type": "eventTypeGroups",
- "id": "29101d41-f0d7-44be-8d14-5f21c57d6bf0"
}
}
}
], - "genericEvents": [
- {
- "dataSource": "GenericEventDataSource[6dfbcf65-fdbf-4f69-898b-f9251a51854d]",
- "displayName": "MyGenericEvent",
- "enabled": true,
- "expression": "\\\"abc\\\"",
- "expressionType": "0",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyGenericEvent",
- "priority": 100,
- "shadowId": "8adba830-9bb3-4234-b0cb-4e3d68356a96",
- "relations": {
- "self": {
- "type": "genericEvents",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c"
}
}
}
], - "userDefinedEvents": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "displayName": "Event Low",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Event Low",
- "subtype": "UserDefined",
- "relations": {
- "self": {
- "type": "userDefinedEvents",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1"
}
}
}
], - "relations": {
- "self": {
- "type": "eventTypeGroups",
- "id": "29101d41-f0d7-44be-8d14-5f21c57d6bf0"
}
}
}
], - "evidenceLockProfiles": [
- {
- "displayName": "Default evidence lock profile",
- "id": "231ee2e9-b527-494d-bc14-c5eda3745681",
- "name": "Default evidence lock profile",
- "retentionTimeOptions": [
- "string"
], - "relations": {
- "self": {
- "type": "evidenceLockProfiles",
- "id": "231ee2e9-b527-494d-bc14-c5eda3745681"
}
}
}
], - "failoverGroups": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "FailoverGroup may have a long description",
- "displayName": "MyFailoverGroup",
- "failoverRecorders": [
- {
- "activeWebServerUri": "string",
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "databasePath": "myDatabasePath",
- "description": "FailoverRecorder may have a long description",
- "displayName": "groupLevelFailover",
- "enabled": true,
- "hostName": "servertest",
- "id": "2b0bd2b2-aac8-40f5-b723-0c309f7b02eb",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "multicastServerAddress": "0.0.0.0",
- "name": "groupLevelFailover",
- "portNumber": 7563,
- "position": 0,
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "udpPort": 1111,
- "relations": {
- "self": {
- "type": "failoverRecorders",
- "id": "2b0bd2b2-aac8-40f5-b723-0c309f7b02eb"
}, - "parent": {
- "type": "failoverGroups",
- "id": "363c3fad-f404-49d2-baf4-a020ab50712c"
}
}
}
], - "id": "363c3fad-f404-49d2-baf4-a020ab50712c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyFailoverGroup",
- "relations": {
- "self": {
- "type": "failoverGroups",
- "id": "363c3fad-f404-49d2-baf4-a020ab50712c"
}
}
}
], - "genericEventDataSources": [
- {
- "dataSourceAddressFamily": "Both",
- "dataSourceAllowed": "string",
- "dataSourceAllowed6": "string",
- "dataSourceEcho": "None",
- "dataSourceEncoding": 1252,
- "dataSourceLog": false,
- "dataSourcePort": 5555,
- "dataSourceProtocol": "Tcp",
- "dataSourceSeparator": "string",
- "displayName": "MyGenericEventDataSource",
- "enabled": true,
- "id": "311a6f1d-7fa8-4bff-8daa-8850a08a6498",
- "name": "MyGenericEventDataSource",
- "relations": {
- "self": {
- "type": "genericEventDataSources",
- "id": "311a6f1d-7fa8-4bff-8daa-8850a08a6498"
}
}
}
], - "genericEvents": [
- {
- "dataSource": "GenericEventDataSource[6dfbcf65-fdbf-4f69-898b-f9251a51854d]",
- "displayName": "MyGenericEvent",
- "enabled": true,
- "expression": "\\\"abc\\\"",
- "expressionType": "0",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyGenericEvent",
- "priority": 100,
- "shadowId": "8adba830-9bb3-4234-b0cb-4e3d68356a96",
- "relations": {
- "self": {
- "type": "genericEvents",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c"
}
}
}
], - "gisMapLocations": [
- {
- "color": "#FFFF00AE",
- "displayName": "MyGisMapLocation",
- "id": "42bb29be-4bb2-4b59-986a-6314ce59569c",
- "name": "MyGisMapLocation",
- "positionX": 42,
- "positionY": 84,
- "scale": 1,
- "relations": {
- "self": {
- "type": "gisMapLocations",
- "id": "42bb29be-4bb2-4b59-986a-6314ce59569c"
}
}
}
], - "id": "00645af0-db75-40c2-82cc-2ad2e820aca9",
- "inputEventGroups": [
- {
- "builtIn": false,
- "description": "InputEventGroup may have a long description",
- "displayName": "Input Group 1",
- "id": "3f28850e-21be-45e1-bf27-607d8b930c75",
- "inputEventGroups": [
- { }
], - "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Input Group 1",
- "relations": {
- "self": {
- "type": "inputEventGroups",
- "id": "3f28850e-21be-45e1-bf27-607d8b930c75"
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "lastStatusHandshake": "2022-05-23T09:24:58.9130000+02:00",
- "layoutGroups": [
- {
- "description": "LayoutGroup may have a long description",
- "displayName": "4:3",
- "id": "b0e14cf5-0ead-4612-a2d0-9d071073c50d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "layouts": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "definitionXml": "<ViewLayout ViewLayoutType=\\\"VideoOS.RemoteClient.Application.Data.ViewLayouts.ViewLayoutCustom, VideoOS.RemoteClient.Application\\\" Id=\\\"e4391ae5-7d96-4a0f-835a-9019a73f269a\\\" ViewLayoutGroupId=\\\"7EB5B9CC-D56F-4785-BA72-4E71FADA8C6B\\\"><ViewLayoutIcon>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</ViewLayoutIcon><ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>1000</Width><Height>666</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>666</Y></Position><Size><Width>1000</Width><Height>333</Height></Size></ViewItem></ViewItems></ViewLayout>",
- "description": "Layout may have a long description",
- "displayName": "1 + 1",
- "id": "314254b7-be6b-4c5d-bf6b-aae579bf88c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "1 + 1",
- "relations": {
- "self": {
- "type": "layouts",
- "id": "314254b7-be6b-4c5d-bf6b-aae579bf88c0"
}, - "parent": {
- "type": "layoutGroups",
- "id": "b0e14cf5-0ead-4612-a2d0-9d071073c50d"
}
}
}
], - "name": "4:3",
- "relations": {
- "self": {
- "type": "layoutGroups",
- "id": "b0e14cf5-0ead-4612-a2d0-9d071073c50d"
}
}
}
], - "licenseInformations": [
- {
- "activationAutomatic": false,
- "careId": "string",
- "careLevel": "Premium",
- "displayName": "XProtect Corporate 2024 R2",
- "licenseDetails": [
- {
- "activated": "13",
- "changesWithoutActivation": "0 out of 0",
- "displayName": "Device License",
- "firstGraceExpirationDate": "Unrestricted",
- "graceExpired": "0",
- "inGrace": 0,
- "licenseType": "Device License",
- "note": "string",
- "notLicensed": "0",
- "pluginId": "00000000-0000-0000-0000-000000000000"
}
], - "licenseInstalledProducts": [
- {
- "carePlus": "2029-07-02T14:01:00.0000000Z",
- "carePremium": "2029-07-02T14:01:28.0000000Z",
- "displayName": "XProtect Corporate 2024 R2",
- "expirationDate": "Unrestricted",
- "pluginId": "00000000-0000-0000-0000-000000000000",
- "productDisplayName": "XProtect Corporate 2024 R2",
- "slc": "M01-C01-242-01-6C42E9"
}
], - "licenseOverviewAll": [
- {
- "activated": "13 out of 5000",
- "displayName": "Device License",
- "licenseType": "Device License",
- "pluginId": "00000000-0000-0000-0000-000000000000"
}
], - "productionEnvironment": "wtst",
- "sku": "XPCO",
- "slc": "M01-C01-242-01-6C42E9",
- "licenseProperties": [
- {
- "displayName": "SmartClientProfiles",
- "parameters": [
- {
- "key": "string",
- "value": "string"
}
]
}
], - "relations": {
- "self": {
- "type": "licenseInformations",
- "id": "f0e83649-e1aa-4424-a5be-cd507d041cd6"
}
}
}
], - "loginProviders": [
- {
- "callbackPath": "/signin-oidc",
- "clientId": "ms.idp",
- "clientSecret": "string",
- "clientSecretHasValue": true,
- "displayName": "TA External Provider",
- "enabled": true,
- "id": "cb707285-8180-49d3-89c9-2916186be755",
- "name": "TA External Provider",
- "promptForLogin": true,
- "registeredClaims": [
- {
- "caseSensitive": false,
- "displayName": "VMS role",
- "id": 1,
- "name": "vms_role",
- "relations": {
- "self": {
- "type": "registeredClaims",
- "id": "95206c2c-cf5f-46ca-9c64-4cb44b4e5a1e"
}, - "parent": {
- "type": "loginProviders",
- "id": "cb707285-8180-49d3-89c9-2916186be755"
}
}
}
], - "scopes": [
- "string"
], - "userNameClaimType": "string",
- "relations": {
- "self": {
- "type": "loginProviders",
- "id": "cb707285-8180-49d3-89c9-2916186be755"
}
}
}
], - "lprMatchLists": [
- {
- "customFields": "string",
- "displayName": "Unlisted license plate",
- "id": "55ae8798-1e4a-45c9-939a-d9a9ea444610",
- "name": "Unlisted license plate",
- "registrationNumbers": "string",
- "triggerEventList": [
- {
- "type": "outputs",
- "id": "aa25e56d-5065-4449-beed-bb724fb55ecc"
}
], - "relations": {
- "self": {
- "type": "lprMatchLists",
- "id": "55ae8798-1e4a-45c9-939a-d9a9ea444610"
}
}
}
], - "mailNotificationProfiles": [
- {
- "description": "MailNotificationProfile may have a long description",
- "displayName": "My mail notification profile2",
- "embedImages": true,
- "frameRate": 25,
- "id": "19d8f6ba-324f-4eed-8861-0e3f8763210d",
- "includeAVI": true,
- "includeImages": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "messageText": "My mail notification profile message",
- "name": "My mail notification profile2",
- "numberOfImages": 1,
- "recipients": [
- "string"
], - "subject": "My mail notification profile subject",
- "timeAfterEvent": 1,
- "timeBeforeEvent": 1,
- "timeBetweenImages": 1,
- "timeBetweenMails": 1,
- "relations": {
- "self": {
- "type": "mailNotificationProfiles",
- "id": "19d8f6ba-324f-4eed-8861-0e3f8763210d"
}
}
}
], - "masterSiteAddress": "string",
- "matrix": [
- {
- "address": "localhost",
- "description": "Matrix may have a long description",
- "displayName": "MyMatrix",
- "id": "4cb572c6-20af-4dba-a000-0b6104285607",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyMatrix",
- "password": "string",
- "port": 12345,
- "relations": {
- "self": {
- "type": "matrix",
- "id": "4cb572c6-20af-4dba-a000-0b6104285607"
}
}
}
], - "metadataGroups": [
- {
- "builtIn": false,
- "description": "MetadataGroup may have a long description",
- "displayName": "Metadata Group 1",
- "id": "b37f4500-1dd1-4995-bafa-baf09c9f64ec",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": null,
- "id": null
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "metadataGroups": [
- { }
], - "name": "Metadata Group 1",
- "relations": {
- "self": {
- "type": "metadataGroups",
- "id": "b37f4500-1dd1-4995-bafa-baf09c9f64ec"
}
}
}
], - "microphoneGroups": [
- {
- "builtIn": false,
- "description": "MicrophoneGroup may have a long description",
- "displayName": "Microphone Group",
- "id": "db393d9d-3008-4307-8e41-408dd7f920d5",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "microphoneGroups": [
- { }
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": null,
- "id": null
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "name": "Microphone Group",
- "relations": {
- "self": {
- "type": "microphoneGroups",
- "id": "db393d9d-3008-4307-8e41-408dd7f920d5"
}
}
}
], - "mipKinds": [
- {
- "dataVersion": 1,
- "displayName": "Incident properties",
- "displayOnGisMap": true,
- "id": "c5d5ab61-9eee-425a-96e9-62e08cac6b0f",
- "kindType": "ITEM",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "mipItems": [
- {
- "__Encrypt": false,
- "displayName": "Incident projects",
- "enabled": true,
- "GisPoint": "POINT EMPTY",
- "Id": "77F8F2A9-9DE8-4048-8D63-26BF44DCCED1",
- "LastModified": "2024-08-18T07:12:54.6400000Z",
- "mipItems": [
- { }
], - "Name": "Incident projects",
- "relations": {
- "self": {
- "type": "mipItems",
- "id": "9f44adfa-ceab-427a-b669-fc79cbcf04c9"
}, - "parent": {
- "type": "mipKinds",
- "id": "c5d5ab61-9eee-425a-96e9-62e08cac6b0f"
}
}
}
], - "modifiedUser": "TA\\TATest",
- "name": "Incident properties",
- "parentKind": "00000000-0000-0000-0000-000000000000",
- "pluginId": "6053b0b4-3e97-4a86-8e46-d1a9ce807ed1",
- "pluginName": "XProtect Incident Manager",
- "securityAction": "string",
- "relations": {
- "self": {
- "type": "mipKinds",
- "id": "c5d5ab61-9eee-425a-96e9-62e08cac6b0f"
}
}
}
], - "name": "DKTA-0810SK0016",
- "outputGroups": [
- {
- "builtIn": false,
- "description": "OutputGroup may have a long description",
- "displayName": "Test Driver Camera 1",
- "id": "806ebe93-aa00-4476-99ea-9e44418a7acd",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Camera 1",
- "outputGroups": [
- { }
], - "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "relations": {
- "self": {
- "type": "outputGroups",
- "id": "806ebe93-aa00-4476-99ea-9e44418a7acd"
}
}
}
], - "owner": [
- {
- "displayName": "Basic Information",
- "relations": {
- "self": {
- "type": "owner",
- "id": "f0ad19f5-3d26-4fde-a31f-92e8195f480a"
}
}
}
], - "physicalMemory": 0,
- "platform": "[Not Available]",
- "processors": 0,
- "recordingServers": [
- {
- "activeWebServerUri": "string",
- "description": "RecordingServer may have a long description",
- "displayName": "DKTA-0810SK0016",
- "enabled": true,
- "hardware": [
- {
- "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": null,
- "enabled": null,
- "fisheyeFieldOfView": null,
- "orientation": null,
- "registeredPanomorphLens": null,
- "registeredPanomorphLensNumber": null,
- "relations": { }
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": null,
- "displayName": null,
- "enabled": null,
- "excludeRegions": null,
- "generateMotionMetadata": null,
- "gridSize": null,
- "hardwareAccelerationMode": null,
- "id": null,
- "keyframesOnly": null,
- "manualSensitivity": null,
- "manualSensitivityEnabled": null,
- "processTime": null,
- "threshold": null,
- "useExcludeRegions": null,
- "relations": { }
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": null,
- "description": null,
- "displayName": null,
- "endPresetId": null,
- "endSpeed": null,
- "endTransitionTime": null,
- "id": null,
- "initSpeed": null,
- "initTransitionTime": null,
- "name": null,
- "patrollingEntry": [ ],
- "relations": { }
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": null,
- "enabled": null,
- "id": null,
- "privacyMaskXml": null,
- "relations": { }
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": null,
- "description": null,
- "devicePreset": null,
- "devicePresetInternalId": null,
- "displayName": null,
- "id": null,
- "locked": null,
- "name": null,
- "pan": null,
- "tilt": null,
- "zoom": null,
- "relations": { }
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": null,
- "stream": [ ],
- "relations": { }
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Hardware may have a long description",
- "displayName": "MultiStream Hardware",
- "enabled": true,
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "hardwareDriverPath": {
- "type": "hardwareDrivers",
- "id": "699dd024-4119-4e3d-b7dd-e2b371d18d79"
}, - "hardwareDriverSettings": [
- {
- "displayName": "Settings",
- "hardwarePtz": {
- "displayName": "Pan-Tilt-Zoom",
- "ptzUsePtzDeviceID": true
}, - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "hardwarePtzSettings": [
- {
- "displayName": "PTZ",
- "hardwarePtzDeviceSettings": [
- {
- "displayName": null,
- "ptzCOMPort": null,
- "ptzDeviceID": null,
- "ptzEnabled": null,
- "ptzProtocol": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "id": "965c4a97-449a-4b4b-b772-e50e7b44f700",
- "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "model": "StableFPS_T800",
- "name": "MultiStream Hardware",
- "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "passwordLastModified": "2022-05-23T09:24:58.9130000+02:00",
- "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "userName": "admin",
- "relations": {
- "self": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "hardwareDrivers": [
- {
- "displayName": "Mobotix M/D/V/S series",
- "driverRevision": "1.62",
- "driverType": "DevicePack",
- "driverVersion": "DevicePack: 13.2a, Device Pack, Build: Unknown",
- "groupName": "Mobotix",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97",
- "name": "Mobotix M/D/V/S series",
- "number": 86,
- "useCount": 0,
- "relations": {
- "self": {
- "type": "hardwareDrivers",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "hostName": "dkta-0810sk0016.ta.rd.local",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "multicastServerAddress": "0.0.0.0",
- "name": "DKTA-0810SK0016",
- "portNumber": 7563,
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "recordingServerFailovers": [
- {
- "displayName": "Failover settings",
- "failoverPort": 11000,
- "hotStandby": "FailoverRecorder[639DEDEB-FFA4-4449-8588-826061E895FF]",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9",
- "primaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "secondaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "relations": {
- "self": {
- "type": "recordingServerFailovers",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "recordingServerMulticasts": [
- {
- "displayName": "Multicast",
- "enabled": true,
- "id": "536c696f-29c3-4be8-8e35-be5720192620",
- "iPAddressEnd": "232.100.1.0",
- "iPAddressStart": "232.100.1.0",
- "MTU": "1500",
- "portRangeEnd": 47199,
- "portRangeStart": 47100,
- "TTL": "32",
- "relations": {
- "self": {
- "type": "recordingServerMulticasts",
- "id": "536c696f-29c3-4be8-8e35-be5720192620"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "shutdownOnStorageFailure": false,
- "storages": [
- {
- "archiveStorages": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "displayName": "ArchiveSchedule",
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Storage may have a long description",
- "diskPath": "c:\\encryptedStorage",
- "displayName": "encryptedStorage",
- "encryptionMethod": "Light",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949",
- "isDefault": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "name": "encryptedStorage",
- "retainMinutes": 30,
- "signing": false,
- "relations": {
- "self": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "synchronizationTime": -1,
- "timeZoneName": "Romance Standard Time",
- "version": "24.2.12065.1",
- "relations": {
- "self": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "roles": [
- {
- "allowMobileClientLogOn": true,
- "allowSmartClientLogOn": true,
- "allowWebClientLogOn": true,
- "claims": [
- {
- "claimName": "vms_role",
- "claimProvider": "a873a5bb-ad32-47cb-bebc-6a95f9252e90",
- "claimValue": "admin",
- "displayName": "admin"
}
], - "description": "Role may have a long description",
- "displayName": "Default Role",
- "dualAuthorizationRequired": false,
- "id": "4a6c31be-631c-48a7-b5bd-f8d65291c8d8",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "makeUsersAnonymousDuringPTZSession": false,
- "name": "Default Role",
- "roleType": "UserDefined",
- "users": [
- {
- "accountName": "Bob",
- "description": "User may have a long description",
- "displayName": "Bob",
- "domain": "[BASIC]",
- "identityType": "BasicUser",
- "memberOf": "string",
- "memberOfRoles": "string",
- "members": "string",
- "sid": "083BDFD6-F583-4F6B-BDFE-5819D287C243",
- "relations": {
- "self": {
- "type": "users",
- "id": "71456a60-cf20-4764-a7a0-a1f89ca56546"
}, - "parent": {
- "type": "users",
- "id": "71456a60-cf20-4764-a7a0-a1f89ca56546"
}
}
}
], - "relations": {
- "self": {
- "type": "roles",
- "id": "4a6c31be-631c-48a7-b5bd-f8d65291c8d8"
}
}
}
], - "rules": [
- {
- "always": true,
- "daysOfWeek": false,
- "description": "Rule may have a long description",
- "displayName": "Default Start Audio Feed Rule",
- "enabled": true,
- "failoverActive": false,
- "failoverInactive": false,
- "id": "43609ca5-bfdd-4238-88ff-686b6657138f",
- "name": "Default Start Audio Feed Rule",
- "outsideTimeProfile": false,
- "startActions": "StartFeed",
- "startRuleType": "TimeInterval",
- "stopActions": "StopFeed",
- "stopRuleType": "TimeInterval",
- "timeOfDayBetween": false,
- "withinTimeProfile": false,
- "relations": {
- "self": {
- "type": "rules",
- "id": "43609ca5-bfdd-4238-88ff-686b6657138f"
}
}
}
], - "saveSearches": [
- {
- "availability": "Public",
- "description": "SaveSearches may have a long description",
- "displayName": "MySaveSearch",
- "id": "6815cc27-524e-4664-8d1c-28041e28a4d4",
- "includesScopeItems": false,
- "name": "MySaveSearch",
- "searchQuery": "searchQuery",
- "relations": {
- "self": {
- "type": "saveSearches",
- "id": "6815cc27-524e-4664-8d1c-28041e28a4d4"
}
}
}
], - "serviceAccount": "S-1-5-20",
- "speakerGroups": [
- {
- "builtIn": false,
- "description": "SpeakerGroup may have a long description",
- "displayName": "Speaker Group",
- "id": "097b561d-e5b4-4c73-be5e-8289a3df0390",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Speaker Group",
- "speakerGroups": [
- { }
], - "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": null,
- "id": null
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "relations": {
- "self": {
- "type": "speakerGroups",
- "id": "097b561d-e5b4-4c73-be5e-8289a3df0390"
}
}
}
], - "stateGroups": [
- {
- "displayName": "Live FPS",
- "id": "14a4425c-7410-48c8-b08b-f3f2c0d843ce",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Live FPS",
- "states": [
- "string"
], - "relations": {
- "self": {
- "type": "stateGroups",
- "id": "14a4425c-7410-48c8-b08b-f3f2c0d843ce"
}
}
}
], - "synchronizationStatus": 0,
- "systemAddresses": [
- {
- "addressType": "Internal",
- "relations": {
- "self": {
- "type": "systemAddresses",
- "id": "99b5bd81-ffbe-456d-b9d6-877e605440ea"
}
}
}
], - "timeProfiles": [
- {
- "description": "TimeProfile may have a long description",
- "displayName": "Day Length Time Profile",
- "id": "da463d61-0d95-42a7-a063-918387743029",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Day Length Time Profile",
- "sunclockGPSCoordinate": "N55 00 E08 50",
- "sunclockSunRise": 0,
- "sunclockSunSet": 0,
- "sunclockTimeZone": "Romance Standard Time",
- "timeProfileType": "Sunclock",
- "timeProfileAppointmentRecur": [
- {
- "allDayEvent": false,
- "appointmentRootId": "450f9a4c-273b-47f0-aea5-b7b36b46a5a0",
- "displayName": "My recurring appointment",
- "endDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "recurrenceDescription": "Occurs every day effective 8/19/2024 until 8/19/2124 from 10:54 AM to 11:54 AM.",
- "recurrenceOccurrenceDuration": "01:00:00",
- "recurrenceOccurrenceStartTime": "10:54:01",
- "recurrencePatternDayOfMonth": 23,
- "recurrencePatternDaysOfWeek": 127,
- "recurrencePatternFrequency": "Daily",
- "recurrencePatternInterval": 1,
- "recurrencePatternMonthOfYear": 9,
- "recurrencePatternOccurrenceOfDayInMonth": "Fourth",
- "recurrencePatternType": "Calculated",
- "recurrenceRangeEndDate": "2022-05-23T09:24:58.9130000+02:00",
- "recurrenceRangeLimit": "LimitByDate",
- "recurrenceRangeMaxOccurrences": 10,
- "recurrenceRangeStartDate": "2022-05-23T09:24:58.9130000+02:00",
- "startDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "subject": "My recurring appointment"
}
], - "timeProfileAppointmentRoot": [
- {
- "allDayEvent": false,
- "displayName": "My appointment",
- "endDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "originalStartDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "startDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "subject": "My appointment"
}
], - "relations": {
- "self": {
- "type": "timeProfiles",
- "id": "da463d61-0d95-42a7-a063-918387743029"
}
}
}
], - "timeZone": "Romance Standard Time",
- "toolOptions": [
- {
- "deviceErrorTimeoutSec": "0",
- "displayName": "Recording Server options",
- "pausePatrollingTimeoutSec": 600,
- "ptzManualSessionTimeoutSec": 15,
- "ptzReservedSessionTimeoutSec": 3600,
- "ptzUseDefaultPresetAsPtzHome": false,
- "relations": {
- "self": {
- "type": "toolOptions",
- "id": "ec9c3acc-518e-4cfd-931b-7ee69925b82c"
}
}
}
], - "userDefinedEvents": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "displayName": "Event Low",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Event Low",
- "subtype": "UserDefined",
- "relations": {
- "self": {
- "type": "userDefinedEvents",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1"
}
}
}
], - "version": "24.2.0.1",
- "videoWalls": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "VideoWall may have a long description",
- "displayName": "My wall",
- "height": 200,
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "monitors": [
- {
- "aspectRatio": "Aspect4x3",
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Monitor may have a long description",
- "displayName": "Front desk monitor",
- "emptyViewItems": "Preserve",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f",
- "insertionMethod": "Linked",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "locationX": 0,
- "locationY": 0,
- "monitorPresets": [
- {
- "definitionXml": "<view viewlayouttype=\\\"VideoOS.RemoteClient.Application.Data.ViewLayouts.ViewLayout5x5, VideoOS.RemoteClient.Application\\\" shortcut=\\\"\\\" displayname=\\\"Night\\\" id=\\\"f1e9dcfd-7353-4d26-9475-22800c41d796\\\"><viewitems><viewitem id=\\\"d1001d9e-2b18-46b0-a94e-e354cd50a26c\\\" shortcut=\\\"\\\" displayname=\\\"LPR camera\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\"><iteminfo lastknowncameradisplayname=\\\"LPR camera\\\" cameraid=\\\"16482501-1319-440f-967b-0fc076ba7667\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" ipixsplitmode=\\\"0\\\" keepimagequalitywhenmaximized=\\\"False\\\" maintainimageaspectratio=\\\"True\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" /><properties /></viewitem><viewitem id=\\\"e1473120-02ed-449f-bda6-9497568ce546\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"69199daa-86a7-4635-bc6f-cbc51fe558c6\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"546ba8b8-9482-44e4-abcc-b1d0dc14c155\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"ec210df8-c22a-434e-86e2-b725e76559df\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"95a39cf2-f405-4f67-8a55-72b0c0f5f38a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a68489af-6a9f-46e2-8634-05e1f41e111d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"7d66ee08-dba7-4517-b2b5-f9209d9b24c4\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"198cfe1d-7431-49e0-92ec-c1e86b56a007\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"c697cc7c-a9be-4de8-a921-02e7d7eb2d35\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"b9afb702-ac3d-4e2a-9eed-670db1163c43\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"711bcf13-b31b-42be-8079-f53c3ca278de\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2fbd75f7-7a1a-4bd0-a670-b13d9a8a9773\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"1442394e-9d1e-49d6-b00c-5bae1612ba5a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"928d5bdd-65c2-4d36-9970-34798bcaca4b\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"78ad23d0-81ca-4ebb-90d0-a0769b4684c1\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a662932e-0ee5-4c39-93f0-eb19f481cbad\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"8ee8af16-6408-4319-bb29-6999e7b8c588\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2004163d-5499-47b7-a0e0-873d1e16c92d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"820ebb51-3112-42d5-9ef8-9902052b0cab\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"07010b7c-758e-4ac0-9f01-0451429700d5\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"27dc28f4-e89e-44c2-a7cc-d4b08cf0c727\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"72131cb8-4e56-459c-863f-549bb17dad07\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"0086d81b-1e3c-4cc5-8c24-86f32768dd0a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"f55568ff-7158-418a-a56e-80e437cdf875\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem></viewitems><properties><property value=\\\"<ViewLayout><Icon>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</Icon><ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem></ViewItems></ViewLayout>\\\" name=\\\"LayoutPropperty\\\" /></properties></view>",
- "displayName": "Night",
- "id": "23b6c495-5fbd-4f4e-9a44-23d3e55f7adc",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Night",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "monitorSize": 20,
- "monitorState": "string",
- "name": "Front desk monitor",
- "noLayout": "Preserve",
- "view": {
- "type": "views",
- "id": "01c5dada-2530-439c-9a2f-08af5dd45813"
}, - "relations": {
- "self": {
- "type": "monitors",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f"
}, - "parent": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
], - "name": "My wall",
- "statusText": true,
- "titleBar": "None",
- "videoWallPresets": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "VideoWallPreset may have a long description",
- "displayName": "Night",
- "id": "3cc421f4-f20e-4254-a472-425ded951bc4",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Night",
- "relations": {
- "self": {
- "type": "videoWallPresets",
- "id": "3cc421f4-f20e-4254-a472-425ded951bc4"
}, - "parent": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
], - "width": 200,
- "relations": {
- "self": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
], - "viewGroups": [
- {
- "description": "ViewGroup may have a long description",
- "displayName": "Basic User Group",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Basic User Group",
- "viewGroupDataXml": "string",
- "viewGroups": [
- { }
], - "views": [
- {
- "displayName": "2x1 Audio",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "layoutCustomId": "string",
- "layoutIcon": "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",
- "layoutViewItems": "<ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem><ViewItem><Position><X>500</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem></ViewItems>",
- "name": "2x1 Audio",
- "shortcut": "string",
- "viewLayoutType": "string",
- "viewItem": [
- {
- "displayName": "Index 0",
- "viewItemDefinitionXml": "<viewitem id=\\\"f11ff2f9-6e20-4e50-8528-e6b27b4f9a0b\\\" displayname=\\\"Camera ViewItem\\\" shortcut=\\\"\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\" smartClientId=\\\"8B1A85EF-9A4E-4CD8-9214-85EA148676BD\\\"><iteminfo cameraid=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" lastknowncameradisplayname=\\\"Mini Sequencer camera\\\" livestreamid=\\\"00000000-0000-0000-0000-000000000000\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" maintainimageaspectratio=\\\"True\\\" usedefaultdisplaysettings=\\\"True\\\" showtitlebar=\\\"True\\\" keepimagequalitywhenmaximized=\\\"False\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" pointandclickmode=\\\"0\\\" usingproperties=\\\"True\\\" /><properties><property name=\\\"cameraid\\\" value=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" /><property name=\\\"framerate\\\" value=\\\"0\\\" /><property name=\\\"imagequality\\\" value=\\\"100\\\" /><property name=\\\"lastknowncameradisplayname\\\" value=\\\"Mini Sequencer camera\\\" /></properties></viewitem>",
- "viewItemPosition": 0
}
], - "relations": {
- "self": {
- "type": "views",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208"
}, - "parent": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}
], - "relations": {
- "self": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}
], - "relations": {
- "self": {
- "type": "sites",
- "id": "00645af0-db75-40c2-82cc-2ad2e820aca9"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Management Server
id required | string <guid> Example: 00645af0-db75-40c2-82cc-2ad2e820aca9 Id of the object |
description | string Description |
name | string Name |
object |
{- "description": "System may have a long description",
- "name": "DKTA-0810SK0016",
- "relations": {
- "self": {
- "type": "sites",
- "id": "00645af0-db75-40c2-82cc-2ad2e820aca9"
}
}
}
{- "data": {
- "accessControlSystems": [
- {
- "accessControlUnits": [
- {
- "accessControlUnits": [
- { }
], - "displayName": "Controller 1",
- "id": "e4d81a4d-b0cc-4033-be19-2b50a4469548",
- "name": "Controller 1",
- "ruleGroup": "AccessControlRuleGroup[16F7C724-D91F-1443-1D8E-26F90A94FBB7]",
- "relations": {
- "self": {
- "type": "accessControlUnits",
- "id": "e4d81a4d-b0cc-4033-be19-2b50a4469548"
}, - "parent": {
- "type": "accessControlSystems",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
}
}
], - "displayName": "Test System",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6",
- "name": "Test System",
- "ruleGroup": "AccessControlRuleGroup[7142F91D-9959-0519-25B7-B47381590EE9]",
- "relations": {
- "self": {
- "type": "accessControlSystems",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
}
}
], - "alarmDefinitions": [
- {
- "assignableToAdmins": false,
- "autoClose": false,
- "category": "97bda9c2-bb15-4106-a59b-e72b193820ee",
- "description": "AlarmDefinition may have a long description",
- "disableEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "displayName": "Alarm High Priority",
- "enabled": true,
- "enableEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "enableRule": "0",
- "eventType": "0fcb1955-0e80-4fd4-a78a-db47ee89700c",
- "eventTypeGroup": "5946b6fa-44d9-4f4c-82bb-46a17b924265",
- "id": "9094284b-34c3-4e53-a3d7-8e7e3652567b",
- "managementTimeoutEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "managementTimeoutTime": "00:01:00",
- "mapType": "0",
- "name": "Alarm High Priority",
- "owner": "TA Test User (ta\\tatest)",
- "priority": "8188ff24-b5da-4c19-9ebf-c1d8fc2caa75",
- "relatedCameraList": [
- {
- "type": "cameras",
- "id": "abbe8d6b-765d-4a42-8e5c-14a2e5262df1"
}
], - "relatedMap": "00000000-0000-0000-0000-000000000000",
- "sourceList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "timeProfile": {
- "type": "timeProfiles",
- "id": "3a9a3f27-feb0-4781-85ba-0f6e7251eef1"
}, - "triggerEventlist": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "relations": {
- "self": {
- "type": "alarmDefinitions",
- "id": "9094284b-34c3-4e53-a3d7-8e7e3652567b"
}
}
}
], - "analyticsEvents": [
- {
- "description": "AnalyticsEvent may have a long description",
- "displayName": "MyAnalyticsEvent",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyAnalyticsEvent",
- "sourceArray": [
- "string"
], - "relations": {
- "self": {
- "type": "analyticsEvents",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2"
}
}
}
], - "basicUsers": [
- {
- "canChangePassword": true,
- "claims": [
- {
- "claimName": "vms_role",
- "claimProvider": "a873a5bb-ad32-47cb-bebc-6a95f9252e90",
- "claimValue": "admin",
- "displayName": "admin"
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "BasicUser may have a long description",
- "displayName": "Bob",
- "forcePasswordChange": false,
- "id": "3d7bc850-a0a9-465e-a362-b4d4c07c09b3",
- "isExternal": false,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "lockoutEnd": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bob",
- "sid": "083BDFD6-F583-4F6B-BDFE-5819D287C243",
- "status": "Enabled",
- "relations": {
- "self": {
- "type": "basicUsers",
- "id": "3d7bc850-a0a9-465e-a362-b4d4c07c09b3"
}
}
}
], - "cameraGroups": [
- {
- "builtIn": false,
- "cameraGroups": [
- { }
], - "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": null,
- "id": null
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": null,
- "order": null,
- "presetId": null,
- "waitTime": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": null,
- "displayName": null,
- "liveDefault": null,
- "liveMode": null,
- "name": null,
- "recordTo": null,
- "streamReferenceId": null,
- "useEdge": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "description": "CameraGroup may have a long description",
- "displayName": "Direct Show",
- "id": "815ee09f-312b-489b-b541-f16d2d1fc901",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Direct Show",
- "relations": {
- "self": {
- "type": "cameraGroups",
- "id": "815ee09f-312b-489b-b541-f16d2d1fc901"
}
}
}
], - "childSites": [
- {
- "childSites": [
- { }
], - "connectionState": "Attached",
- "description": "Site may have a long description",
- "displayName": "DKTA-0814SK0013",
- "id": "89b2eec5-8235-4382-8312-c55d87a7b510",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "serviceAccount": "S-1-5-20",
- "siteAddresses": [
- {
- "addressType": "Internal",
}
], - "synchronizationStatus": 201,
- "version": "24.2.0.1",
- "relations": {
- "self": {
- "type": "childSites",
- "id": "89b2eec5-8235-4382-8312-c55d87a7b510"
}
}
}
], - "clientProfiles": [
- {
- "description": "ClientProfile may have a long description",
- "displayName": "My profile",
- "id": "210ff07d-91e6-48f4-8ade-ae79d29d749e",
- "isDefaultProfile": false,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "My profile",
- "clientProfileAccessControl": {
- "displayName": "Access Control",
- "showAccessRequestNotifications": "Yes",
- "showAccessRequestNotificationsLocked": false
}, - "clientProfileAdvanced": {
- "advancedAdaptiveStreaming": "Disabled",
- "advancedAdaptiveStreamingLocked": false,
- "advancedDeinterlacing": "Default",
- "advancedDeinterlacingLocked": false,
- "advancedMaxDecodingThreads": "Auto",
- "advancedMaxDecodingThreadsLocked": false,
- "advancedMulticast": "Enabled",
- "advancedMulticastLocked": false,
- "advancedTimeZone": "LocalMachine",
- "advancedTimeZoneCustom": "Dateline Standard Time",
- "advancedTimeZoneCustomLocked": false,
- "advancedTimeZoneLocked": false,
- "advancedVideoPlayerDiagnosticLevel": "Level0",
- "advancedVideoPlayerDiagnosticLevelLocked": false,
- "advancedVideoPlayerHardwareDecodingMode": "Auto",
- "advancedVideoPlayerHardwareDecodingModeLocked": false,
- "displayName": "Advanced"
}, - "clientProfileAlarmManager": {
- "alarmManagerPlaySoundNotifications": "No",
- "alarmManagerPlaySoundNotificationsLocked": false,
- "alarmManagerShowDesktopNotifications": "No",
- "alarmManagerShowDesktopNotificationsLocked": false,
- "displayName": "Alarm Manager"
}, - "clientProfileExport": {
- "displayName": "Export",
- "exportDestinationType": "Both",
- "exportDestinationTypeLocked": false,
- "exportMergeAddPadding": "No",
- "exportMergeAddPaddingLocked": false,
- "exportMergeFormat": "MP4",
- "exportMergeFormatLocked": false,
- "exportMergeFramesPerSecond": "Fps30",
- "exportMergeFramesPerSecondLocked": false,
- "exportMergeMediaPlayerFormat": "Unavailable",
- "exportMergeMediaPlayerFormatLocked": true,
- "exportMergePreventUpscaling": "No",
- "exportMergePreventUpscalingLocked": false,
- "exportMergeQuality": "Medium",
- "exportMergeQualityLocked": false,
- "exportMergeResolution": "FullHD",
- "exportMergeResolutionLocked": false,
- "exportMergeVideoClipType": "Both",
- "exportMergeVideoClipTypeLocked": false,
- "exportPrivacyMask": "Available",
- "exportPrivacyMaskLocked": false,
- "exportSmartClientPlayerEncryptDatabases": "Yes",
- "exportSmartClientPlayerEncryptDatabasesLocked": true,
- "exportSmartClientPlayerEncryptionStrength": "AES256",
- "exportSmartClientPlayerEncryptionStrengthLocked": true,
- "exportSmartClientPlayerEncryptPassword": "string",
- "exportSmartClientPlayerEncryptPasswordLocked": false,
- "exportSmartClientPlayerFormat": "Available",
- "exportSmartClientPlayerFormatLocked": false,
- "exportSmartClientPlayerGlobalCommentsContent": "string",
- "exportSmartClientPlayerGlobalCommentsContentLocked": false,
- "exportSmartClientPlayerGlobalCommentsMode": "Optional",
- "exportSmartClientPlayerGlobalCommentsModeLocked": false,
- "exportSmartClientPlayerIncludePlayer": "Yes",
- "exportSmartClientPlayerIncludePlayerLocked": false,
- "exportSmartClientPlayerIndividualCommentsMode": "Optional",
- "exportSmartClientPlayerIndividualCommentsModeLocked": false,
- "exportSmartClientPlayerLockForReExport": "Yes",
- "exportSmartClientPlayerLockForReExportLocked": true,
- "exportSmartClientPlayerSignData": "Yes",
- "exportSmartClientPlayerSignDataLocked": true,
- "exportStillImageFormat": "Unavailable",
- "exportStillImageFormatLocked": true,
- "exportStillImageTimestamp": "No",
- "exportStillImageTimestampLocked": false,
- "exportVideoClipCodecProperties": "Available",
- "exportVideoClipCodecPropertiesLocked": false,
- "exportVideoClipFormat": "Unavailable",
- "exportVideoClipFormatLocked": true,
- "exportVideoClipFrameRate": "No",
- "exportVideoClipFrameRateLocked": false,
- "exportVideoClipOutputType": "MKV",
- "exportVideoClipOutputTypeLocked": true,
- "exportVideoClipTextsContent": "string",
- "exportVideoClipTextsContentLocked": false,
- "exportVideoClipTextsMode": "Optional",
- "exportVideoClipTimestamp": "No",
- "exportVideoClipTimestampLocked": false,
- "exportVideoClipType": "Both",
- "exportVideoClipTypeLocked": false,
- "functionsPlaybackExportPath": "Default",
- "functionsPlaybackExportPathCustom": "C:\\Export",
- "functionsPlaybackExportPathCustomLocked": false,
- "panesPlaybackExport": "Available"
}, - "clientProfileGeneral": {
- "alarmManagerTab": "Available",
- "applicationAutoLogin": "Available",
- "applicationEvidenceLock": "Available",
- "applicationExitButton": "Available",
- "applicationHideMousePointerTimeout": "Seconds_5",
- "applicationHideMousePointerTimeoutLocked": false,
- "applicationInactivityTimeout": 0,
- "applicationJoystickSetup": "Available",
- "applicationKeyboardSetup": "Available",
- "applicationLiftPrivacyMaskTimeout": "Minutes_30",
- "applicationLogoutButton": "Available",
- "applicationMaximizeButton": "Available",
- "applicationMinimizeButton": "Available",
- "applicationNewSCVersionText": "string",
- "applicationNewSCVersionWindow": "Show",
- "applicationOnlineHelp": "Available",
- "applicationOnlineHelpLocked": false,
- "applicationOptionsDialogButton": "Available",
- "applicationRememberPassword": "Available",
- "applicationSnapshotAvailability": "Available",
- "applicationSnapshotAvailabilityLocked": false,
- "applicationSnapshotPath": "c:\\Snapshots",
- "applicationSnapshotPathLocked": false,
- "applicationStartMode": "Last",
- "applicationStartModeLocked": false,
- "applicationStartView": "Last",
- "applicationStartViewLocked": false,
- "applicationTransactTab": "Available",
- "applicationVideoTutorials": "Available",
- "applicationVideoTutorialsLocked": false,
- "centralizedSearchMaxDeviceCount": "Count_100",
- "centralizedSearchTab": "Available",
- "displayName": "General",
- "generalApplicationMaximization": "NormalWindow",
- "generalApplicationMaximizationLocked": false,
- "generalCameraErrors": "BlackImageWithOverlay",
- "generalCameraErrorsLocked": false,
- "generalCameraStoppedMessage": "BlackImageWithOverlay",
- "generalCameraStoppedMessageLocked": false,
- "generalDefaultPtzPointAndClickMode": "VirtualJoystick",
- "generalDefaultPtzPointAndClickModeLocked": false,
- "generalDefaultVideoBuffer": "Standard",
- "generalDefaultVideoBufferLocked": false,
- "generalEmptySpaces": "CompanyLogo",
- "generalEmptySpacesLocked": false,
- "generalHtmlViewItemScripting": "Disabled",
- "generalServerErrors": "Hidden",
- "generalServerErrorsLocked": false,
- "generalTimeInTitlebar": "Show",
- "generalTimeInTitlebarLocked": false,
- "generalTitleBar": "Show",
- "generalTitleBarLocked": false,
- "generalViewGridSpacer": "Pixel1",
- "generalViewGridSpacerLocked": false,
- "systemMonitorTab": "Available",
- "viewsCustomLogoInEmptySpaces": "string"
}, - "clientProfileGisMap": {
- "displayName": "Smart map",
- "gisMapBingMapKey": "string",
- "gisMapBingMapKeyLocked": true,
- "gisMapCacheCleanUp": "OnScClose_IfFileNotUsed",
- "gisMapCacheCleanUpLocked": false,
- "gisMapCreateLayerLocation": "No",
- "gisMapCreateLayerLocationLocked": false,
- "gisMapGoogleMapClientId": "string",
- "gisMapGoogleMapClientIdLocked": true,
- "gisMapGoogleMapPrivateKey": "string",
- "gisMapGoogleMapPrivateKeyLocked": true,
- "gisMapGoogleMapSigningSecret": "string",
- "gisMapGoogleMapSigningSecretLocked": true,
- "gisMapOpenStreetMapAlternativeServer": "string",
- "gisMapOpenStreetMapAlternativeServerLocked": true,
- "gisMapOpenStreetMapGeographicLayer": "Unavailable",
- "gisMapOpenStreetMapGeographicLayerLocked": true
}, - "clientProfileLive": {
- "displayName": "Live",
- "functionsLiveBookmarkMode": "Quick",
- "functionsLiveBookmarkModeLocked": false,
- "functionsLiveBoundingBoxes": "Available",
- "functionsLiveBoundingBoxesLocked": false,
- "functionsLiveCameraPlayback": "Available",
- "functionsLiveCameraPlaybackLocked": false,
- "functionsLiveOverlayButtons": "Available",
- "functionsLiveOverlayButtonsLocked": false,
- "functionsLivePrintAvailability": "Available",
- "functionsLivePrintAvailabilityLocked": false,
- "panesLiveAudio": "Available",
- "panesLiveAudioLocked": false,
- "panesLiveEvents": "Available",
- "panesLiveEventsLocked": false,
- "panesLiveMIPPlugin": "Available",
- "panesLiveMIPPluginLocked": false,
- "panesLiveOutputs": "Available",
- "panesLiveOutputsLocked": false,
- "panesLiveSystemOverview": "Available",
- "panesLiveSystemOverviewLocked": false,
- "panesLiveTab": "Available",
- "panesLiveViews": "Available",
- "panesLiveViewsLocked": false
}, - "clientProfilePlayback": {
- "displayName": "Playback",
- "functionsPlaybackBookmarkMode": "Detail",
- "functionsPlaybackBookmarkModeLocked": false,
- "functionsPlaybackBoundingBoxes": "Available",
- "functionsPlaybackBoundingBoxesLocked": false,
- "functionsPlaybackIndependentPlayback": "Available",
- "functionsPlaybackPrintReportCopyRights": "Show",
- "functionsPlaybackPrintReportHeadline": "Default",
- "functionsPlaybackPrintReportHeadlineLocked": false,
- "functionsPlaybackPrintReportHeadlineText": "string",
- "functionsPlaybackPrintReportUserInformation": "Show",
- "panesPlaybackAudio": "Available",
- "panesPlaybackAudioLocked": false,
- "panesPlaybackMIPPlugin": "Available",
- "panesPlaybackMIPPluginLocked": false,
- "panesPlaybackPrint": "Available",
- "panesPlaybackPrintLocked": false,
- "panesPlaybackSystemOverview": "Available",
- "panesPlaybackSystemOverviewLocked": false,
- "panesPlaybackTab": "Available",
- "panesPlaybackViews": "Available",
- "panesPlaybackViewsLocked": false
}, - "clientProfileSetup": {
- "displayName": "Setup",
- "functionsSetupEnableVideoBufferingOption": "Available",
- "functionsSetupEnableVideoBufferingOptionLocked": false,
- "functionsSetupOverlayButtons": "Available",
- "functionsSetupOverlayButtonsLocked": false,
- "mapEditGisMap": "Available",
- "mapEditMaps": "Available",
- "panesSetupMIPPlugin": "Available",
- "panesSetupMIPPluginLocked": false,
- "panesSetupOverlayButtons": "Available",
- "panesSetupOverlayButtonsLocked": false,
- "panesSetupProperties": "Available",
- "panesSetupPropertiesLocked": false,
- "panesSetupSystemOverview": "Available",
- "panesSetupSystemOverviewLocked": false,
- "panesSetupTab": "Available",
- "panesSetupViews": "Available",
- "panesSetupViewsLocked": false
}, - "clientProfileTimeline": {
- "displayName": "Timeline",
- "timelineAllCamerasTimeline": "Show",
- "timelineAllCamerasTimelineLocked": false,
- "timelineBookmarks": "Show",
- "timelineBookmarksLocked": false,
- "timelineHideForNormalViewsTimeout": "Disabled",
- "timelineHideForNormalViewsTimeoutLocked": false,
- "timelineHideForSmartWallViewsTimeout": "Seconds_5",
- "timelineHideForSmartWallViewsTimeoutLocked": false,
- "timelineIncomingAudio": "Hide",
- "timelineIncomingAudioLocked": false,
- "timelineMipData": "Hide",
- "timelineMipDataLocked": false,
- "timelineMipMarker": "Hide",
- "timelineMipMarkerLocked": false,
- "timelineMotion": "Show",
- "timelineMotionLocked": false,
- "timelineOutgoingAudio": "Hide",
- "timelineOutgoingAudioLocked": false,
- "timelineSkipGaps": "DoSkipGaps",
- "timelineSkipGapsLocked": false
}, - "clientProfileViewLayouts": {
- "disabledViewLayouts": [
- {
- "type": "layouts",
- "id": "4514ed40-a3ee-4b47-94ca-3bb7e9f14249"
}
], - "displayName": "View layouts"
}, - "relations": {
- "self": {
- "type": "clientProfiles",
- "id": "210ff07d-91e6-48f4-8ade-ae79d29d749e"
}
}
}
], - "compressors": [
- {
- "aviGenerationConfigData": "string",
- "aviGenerationDataRate": 97,
- "aviGenerationFlags": 0,
- "aviGenerationHandler": 1129730893,
- "aviGenerationKeyFrames": 10,
- "aviGenerationQuality": 75,
- "aviGenerationSelected": false,
- "displayName": "Microsoft Video 1",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "relations": {
- "self": {
- "type": "compressors",
- "id": "a4a1d500-36b9-46d5-965e-7adf1ff1897e"
}
}
}
], - "computerName": "DKTA-0810SK0016",
- "description": "System may have a long description",
- "displayName": "DKTA-0810SK0016",
- "domainName": "ta.rd.local",
- "eventTypeGroups": [
- {
- "analyticsEvents": [
- {
- "description": "AnalyticsEvent may have a long description",
- "displayName": "MyAnalyticsEvent",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyAnalyticsEvent",
- "sourceArray": [
- "string"
], - "relations": {
- "self": {
- "type": "analyticsEvents",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2"
}
}
}
], - "displayName": "Device - Predefined",
- "eventTypes": [
- {
- "builtIn": true,
- "counterEventID": "0ee90664-2924-42a0-a816-4129d0ecabdc",
- "description": "EventType may have a long description",
- "displayName": "Communication Stopped",
- "generatorGroupId": "string",
- "generatorGroupName": "string",
- "generatorID": "string",
- "generatorName": "string",
- "generatorSubtype": "string",
- "generatorType": "Device",
- "id": "6df795fa-2b74-48fe-9243-6c96f1104acd",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "CommunicationStopped",
- "occursGlobally": false,
- "sourceArray": [
- "string"
], - "sourceFilterArray": [
- "string"
], - "stateGroupId": "53b40c77-cf48-42a2-a432-db65ae3afc7a",
- "relations": {
- "self": {
- "type": "eventTypes",
- "id": "6df795fa-2b74-48fe-9243-6c96f1104acd"
}, - "parent": {
- "type": "eventTypeGroups",
- "id": "29101d41-f0d7-44be-8d14-5f21c57d6bf0"
}
}
}
], - "genericEvents": [
- {
- "dataSource": "GenericEventDataSource[6dfbcf65-fdbf-4f69-898b-f9251a51854d]",
- "displayName": "MyGenericEvent",
- "enabled": true,
- "expression": "\\\"abc\\\"",
- "expressionType": "0",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyGenericEvent",
- "priority": 100,
- "shadowId": "8adba830-9bb3-4234-b0cb-4e3d68356a96",
- "relations": {
- "self": {
- "type": "genericEvents",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c"
}
}
}
], - "userDefinedEvents": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "displayName": "Event Low",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Event Low",
- "subtype": "UserDefined",
- "relations": {
- "self": {
- "type": "userDefinedEvents",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1"
}
}
}
], - "relations": {
- "self": {
- "type": "eventTypeGroups",
- "id": "29101d41-f0d7-44be-8d14-5f21c57d6bf0"
}
}
}
], - "evidenceLockProfiles": [
- {
- "displayName": "Default evidence lock profile",
- "id": "231ee2e9-b527-494d-bc14-c5eda3745681",
- "name": "Default evidence lock profile",
- "retentionTimeOptions": [
- "string"
], - "relations": {
- "self": {
- "type": "evidenceLockProfiles",
- "id": "231ee2e9-b527-494d-bc14-c5eda3745681"
}
}
}
], - "failoverGroups": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "FailoverGroup may have a long description",
- "displayName": "MyFailoverGroup",
- "failoverRecorders": [
- {
- "activeWebServerUri": "string",
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "databasePath": "myDatabasePath",
- "description": "FailoverRecorder may have a long description",
- "displayName": "groupLevelFailover",
- "enabled": true,
- "hostName": "servertest",
- "id": "2b0bd2b2-aac8-40f5-b723-0c309f7b02eb",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "multicastServerAddress": "0.0.0.0",
- "name": "groupLevelFailover",
- "portNumber": 7563,
- "position": 0,
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "udpPort": 1111,
- "relations": {
- "self": {
- "type": "failoverRecorders",
- "id": "2b0bd2b2-aac8-40f5-b723-0c309f7b02eb"
}, - "parent": {
- "type": "failoverGroups",
- "id": "363c3fad-f404-49d2-baf4-a020ab50712c"
}
}
}
], - "id": "363c3fad-f404-49d2-baf4-a020ab50712c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyFailoverGroup",
- "relations": {
- "self": {
- "type": "failoverGroups",
- "id": "363c3fad-f404-49d2-baf4-a020ab50712c"
}
}
}
], - "genericEventDataSources": [
- {
- "dataSourceAddressFamily": "Both",
- "dataSourceAllowed": "string",
- "dataSourceAllowed6": "string",
- "dataSourceEcho": "None",
- "dataSourceEncoding": 1252,
- "dataSourceLog": false,
- "dataSourcePort": 5555,
- "dataSourceProtocol": "Tcp",
- "dataSourceSeparator": "string",
- "displayName": "MyGenericEventDataSource",
- "enabled": true,
- "id": "311a6f1d-7fa8-4bff-8daa-8850a08a6498",
- "name": "MyGenericEventDataSource",
- "relations": {
- "self": {
- "type": "genericEventDataSources",
- "id": "311a6f1d-7fa8-4bff-8daa-8850a08a6498"
}
}
}
], - "genericEvents": [
- {
- "dataSource": "GenericEventDataSource[6dfbcf65-fdbf-4f69-898b-f9251a51854d]",
- "displayName": "MyGenericEvent",
- "enabled": true,
- "expression": "\\\"abc\\\"",
- "expressionType": "0",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyGenericEvent",
- "priority": 100,
- "shadowId": "8adba830-9bb3-4234-b0cb-4e3d68356a96",
- "relations": {
- "self": {
- "type": "genericEvents",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c"
}
}
}
], - "gisMapLocations": [
- {
- "color": "#FFFF00AE",
- "displayName": "MyGisMapLocation",
- "id": "42bb29be-4bb2-4b59-986a-6314ce59569c",
- "name": "MyGisMapLocation",
- "positionX": 42,
- "positionY": 84,
- "scale": 1,
- "relations": {
- "self": {
- "type": "gisMapLocations",
- "id": "42bb29be-4bb2-4b59-986a-6314ce59569c"
}
}
}
], - "id": "00645af0-db75-40c2-82cc-2ad2e820aca9",
- "inputEventGroups": [
- {
- "builtIn": false,
- "description": "InputEventGroup may have a long description",
- "displayName": "Input Group 1",
- "id": "3f28850e-21be-45e1-bf27-607d8b930c75",
- "inputEventGroups": [
- { }
], - "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Input Group 1",
- "relations": {
- "self": {
- "type": "inputEventGroups",
- "id": "3f28850e-21be-45e1-bf27-607d8b930c75"
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "lastStatusHandshake": "2022-05-23T09:24:58.9130000+02:00",
- "layoutGroups": [
- {
- "description": "LayoutGroup may have a long description",
- "displayName": "4:3",
- "id": "b0e14cf5-0ead-4612-a2d0-9d071073c50d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "layouts": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "definitionXml": "<ViewLayout ViewLayoutType=\\\"VideoOS.RemoteClient.Application.Data.ViewLayouts.ViewLayoutCustom, VideoOS.RemoteClient.Application\\\" Id=\\\"e4391ae5-7d96-4a0f-835a-9019a73f269a\\\" ViewLayoutGroupId=\\\"7EB5B9CC-D56F-4785-BA72-4E71FADA8C6B\\\"><ViewLayoutIcon>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</ViewLayoutIcon><ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>1000</Width><Height>666</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>666</Y></Position><Size><Width>1000</Width><Height>333</Height></Size></ViewItem></ViewItems></ViewLayout>",
- "description": "Layout may have a long description",
- "displayName": "1 + 1",
- "id": "314254b7-be6b-4c5d-bf6b-aae579bf88c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "1 + 1",
- "relations": {
- "self": {
- "type": "layouts",
- "id": "314254b7-be6b-4c5d-bf6b-aae579bf88c0"
}, - "parent": {
- "type": "layoutGroups",
- "id": "b0e14cf5-0ead-4612-a2d0-9d071073c50d"
}
}
}
], - "name": "4:3",
- "relations": {
- "self": {
- "type": "layoutGroups",
- "id": "b0e14cf5-0ead-4612-a2d0-9d071073c50d"
}
}
}
], - "licenseInformations": [
- {
- "activationAutomatic": false,
- "careId": "string",
- "careLevel": "Premium",
- "displayName": "XProtect Corporate 2024 R2",
- "licenseDetails": [
- {
- "activated": "13",
- "changesWithoutActivation": "0 out of 0",
- "displayName": "Device License",
- "firstGraceExpirationDate": "Unrestricted",
- "graceExpired": "0",
- "inGrace": 0,
- "licenseType": "Device License",
- "note": "string",
- "notLicensed": "0",
- "pluginId": "00000000-0000-0000-0000-000000000000"
}
], - "licenseInstalledProducts": [
- {
- "carePlus": "2029-07-02T14:01:00.0000000Z",
- "carePremium": "2029-07-02T14:01:28.0000000Z",
- "displayName": "XProtect Corporate 2024 R2",
- "expirationDate": "Unrestricted",
- "pluginId": "00000000-0000-0000-0000-000000000000",
- "productDisplayName": "XProtect Corporate 2024 R2",
- "slc": "M01-C01-242-01-6C42E9"
}
], - "licenseOverviewAll": [
- {
- "activated": "13 out of 5000",
- "displayName": "Device License",
- "licenseType": "Device License",
- "pluginId": "00000000-0000-0000-0000-000000000000"
}
], - "productionEnvironment": "wtst",
- "sku": "XPCO",
- "slc": "M01-C01-242-01-6C42E9",
- "licenseProperties": [
- {
- "displayName": "SmartClientProfiles",
- "parameters": [
- {
- "key": "string",
- "value": "string"
}
]
}
], - "relations": {
- "self": {
- "type": "licenseInformations",
- "id": "f0e83649-e1aa-4424-a5be-cd507d041cd6"
}
}
}
], - "loginProviders": [
- {
- "callbackPath": "/signin-oidc",
- "clientId": "ms.idp",
- "clientSecret": "string",
- "clientSecretHasValue": true,
- "displayName": "TA External Provider",
- "enabled": true,
- "id": "cb707285-8180-49d3-89c9-2916186be755",
- "name": "TA External Provider",
- "promptForLogin": true,
- "registeredClaims": [
- {
- "caseSensitive": false,
- "displayName": "VMS role",
- "id": 1,
- "name": "vms_role",
- "relations": {
- "self": {
- "type": "registeredClaims",
- "id": "95206c2c-cf5f-46ca-9c64-4cb44b4e5a1e"
}, - "parent": {
- "type": "loginProviders",
- "id": "cb707285-8180-49d3-89c9-2916186be755"
}
}
}
], - "scopes": [
- "string"
], - "userNameClaimType": "string",
- "relations": {
- "self": {
- "type": "loginProviders",
- "id": "cb707285-8180-49d3-89c9-2916186be755"
}
}
}
], - "lprMatchLists": [
- {
- "customFields": "string",
- "displayName": "Unlisted license plate",
- "id": "55ae8798-1e4a-45c9-939a-d9a9ea444610",
- "name": "Unlisted license plate",
- "registrationNumbers": "string",
- "triggerEventList": [
- {
- "type": "outputs",
- "id": "aa25e56d-5065-4449-beed-bb724fb55ecc"
}
], - "relations": {
- "self": {
- "type": "lprMatchLists",
- "id": "55ae8798-1e4a-45c9-939a-d9a9ea444610"
}
}
}
], - "mailNotificationProfiles": [
- {
- "description": "MailNotificationProfile may have a long description",
- "displayName": "My mail notification profile2",
- "embedImages": true,
- "frameRate": 25,
- "id": "19d8f6ba-324f-4eed-8861-0e3f8763210d",
- "includeAVI": true,
- "includeImages": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "messageText": "My mail notification profile message",
- "name": "My mail notification profile2",
- "numberOfImages": 1,
- "recipients": [
- "string"
], - "subject": "My mail notification profile subject",
- "timeAfterEvent": 1,
- "timeBeforeEvent": 1,
- "timeBetweenImages": 1,
- "timeBetweenMails": 1,
- "relations": {
- "self": {
- "type": "mailNotificationProfiles",
- "id": "19d8f6ba-324f-4eed-8861-0e3f8763210d"
}
}
}
], - "masterSiteAddress": "string",
- "matrix": [
- {
- "address": "localhost",
- "description": "Matrix may have a long description",
- "displayName": "MyMatrix",
- "id": "4cb572c6-20af-4dba-a000-0b6104285607",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyMatrix",
- "password": "string",
- "port": 12345,
- "relations": {
- "self": {
- "type": "matrix",
- "id": "4cb572c6-20af-4dba-a000-0b6104285607"
}
}
}
], - "metadataGroups": [
- {
- "builtIn": false,
- "description": "MetadataGroup may have a long description",
- "displayName": "Metadata Group 1",
- "id": "b37f4500-1dd1-4995-bafa-baf09c9f64ec",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": null,
- "id": null
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "metadataGroups": [
- { }
], - "name": "Metadata Group 1",
- "relations": {
- "self": {
- "type": "metadataGroups",
- "id": "b37f4500-1dd1-4995-bafa-baf09c9f64ec"
}
}
}
], - "microphoneGroups": [
- {
- "builtIn": false,
- "description": "MicrophoneGroup may have a long description",
- "displayName": "Microphone Group",
- "id": "db393d9d-3008-4307-8e41-408dd7f920d5",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "microphoneGroups": [
- { }
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": null,
- "id": null
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "name": "Microphone Group",
- "relations": {
- "self": {
- "type": "microphoneGroups",
- "id": "db393d9d-3008-4307-8e41-408dd7f920d5"
}
}
}
], - "mipKinds": [
- {
- "dataVersion": 1,
- "displayName": "Incident properties",
- "displayOnGisMap": true,
- "id": "c5d5ab61-9eee-425a-96e9-62e08cac6b0f",
- "kindType": "ITEM",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "mipItems": [
- {
- "__Encrypt": false,
- "displayName": "Incident projects",
- "enabled": true,
- "GisPoint": "POINT EMPTY",
- "Id": "77F8F2A9-9DE8-4048-8D63-26BF44DCCED1",
- "LastModified": "2024-08-18T07:12:54.6400000Z",
- "mipItems": [
- { }
], - "Name": "Incident projects",
- "relations": {
- "self": {
- "type": "mipItems",
- "id": "9f44adfa-ceab-427a-b669-fc79cbcf04c9"
}, - "parent": {
- "type": "mipKinds",
- "id": "c5d5ab61-9eee-425a-96e9-62e08cac6b0f"
}
}
}
], - "modifiedUser": "TA\\TATest",
- "name": "Incident properties",
- "parentKind": "00000000-0000-0000-0000-000000000000",
- "pluginId": "6053b0b4-3e97-4a86-8e46-d1a9ce807ed1",
- "pluginName": "XProtect Incident Manager",
- "securityAction": "string",
- "relations": {
- "self": {
- "type": "mipKinds",
- "id": "c5d5ab61-9eee-425a-96e9-62e08cac6b0f"
}
}
}
], - "name": "DKTA-0810SK0016",
- "outputGroups": [
- {
- "builtIn": false,
- "description": "OutputGroup may have a long description",
- "displayName": "Test Driver Camera 1",
- "id": "806ebe93-aa00-4476-99ea-9e44418a7acd",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Camera 1",
- "outputGroups": [
- { }
], - "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "relations": {
- "self": {
- "type": "outputGroups",
- "id": "806ebe93-aa00-4476-99ea-9e44418a7acd"
}
}
}
], - "owner": [
- {
- "displayName": "Basic Information",
- "relations": {
- "self": {
- "type": "owner",
- "id": "f0ad19f5-3d26-4fde-a31f-92e8195f480a"
}
}
}
], - "physicalMemory": 0,
- "platform": "[Not Available]",
- "processors": 0,
- "recordingServers": [
- {
- "activeWebServerUri": "string",
- "description": "RecordingServer may have a long description",
- "displayName": "DKTA-0810SK0016",
- "enabled": true,
- "hardware": [
- {
- "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": null,
- "enabled": null,
- "fisheyeFieldOfView": null,
- "orientation": null,
- "registeredPanomorphLens": null,
- "registeredPanomorphLensNumber": null,
- "relations": { }
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": null,
- "displayName": null,
- "enabled": null,
- "excludeRegions": null,
- "generateMotionMetadata": null,
- "gridSize": null,
- "hardwareAccelerationMode": null,
- "id": null,
- "keyframesOnly": null,
- "manualSensitivity": null,
- "manualSensitivityEnabled": null,
- "processTime": null,
- "threshold": null,
- "useExcludeRegions": null,
- "relations": { }
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": null,
- "description": null,
- "displayName": null,
- "endPresetId": null,
- "endSpeed": null,
- "endTransitionTime": null,
- "id": null,
- "initSpeed": null,
- "initTransitionTime": null,
- "name": null,
- "patrollingEntry": [ ],
- "relations": { }
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": null,
- "enabled": null,
- "id": null,
- "privacyMaskXml": null,
- "relations": { }
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": null,
- "description": null,
- "devicePreset": null,
- "devicePresetInternalId": null,
- "displayName": null,
- "id": null,
- "locked": null,
- "name": null,
- "pan": null,
- "tilt": null,
- "zoom": null,
- "relations": { }
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": null,
- "stream": [ ],
- "relations": { }
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Hardware may have a long description",
- "displayName": "MultiStream Hardware",
- "enabled": true,
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "hardwareDriverPath": {
- "type": "hardwareDrivers",
- "id": "699dd024-4119-4e3d-b7dd-e2b371d18d79"
}, - "hardwareDriverSettings": [
- {
- "displayName": "Settings",
- "hardwarePtz": {
- "displayName": "Pan-Tilt-Zoom",
- "ptzUsePtzDeviceID": true
}, - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "hardwarePtzSettings": [
- {
- "displayName": "PTZ",
- "hardwarePtzDeviceSettings": [
- {
- "displayName": null,
- "ptzCOMPort": null,
- "ptzDeviceID": null,
- "ptzEnabled": null,
- "ptzProtocol": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "id": "965c4a97-449a-4b4b-b772-e50e7b44f700",
- "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "model": "StableFPS_T800",
- "name": "MultiStream Hardware",
- "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "passwordLastModified": "2022-05-23T09:24:58.9130000+02:00",
- "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "userName": "admin",
- "relations": {
- "self": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "hardwareDrivers": [
- {
- "displayName": "Mobotix M/D/V/S series",
- "driverRevision": "1.62",
- "driverType": "DevicePack",
- "driverVersion": "DevicePack: 13.2a, Device Pack, Build: Unknown",
- "groupName": "Mobotix",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97",
- "name": "Mobotix M/D/V/S series",
- "number": 86,
- "useCount": 0,
- "relations": {
- "self": {
- "type": "hardwareDrivers",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "hostName": "dkta-0810sk0016.ta.rd.local",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "multicastServerAddress": "0.0.0.0",
- "name": "DKTA-0810SK0016",
- "portNumber": 7563,
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "recordingServerFailovers": [
- {
- "displayName": "Failover settings",
- "failoverPort": 11000,
- "hotStandby": "FailoverRecorder[639DEDEB-FFA4-4449-8588-826061E895FF]",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9",
- "primaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "secondaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "relations": {
- "self": {
- "type": "recordingServerFailovers",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "recordingServerMulticasts": [
- {
- "displayName": "Multicast",
- "enabled": true,
- "id": "536c696f-29c3-4be8-8e35-be5720192620",
- "iPAddressEnd": "232.100.1.0",
- "iPAddressStart": "232.100.1.0",
- "MTU": "1500",
- "portRangeEnd": 47199,
- "portRangeStart": 47100,
- "TTL": "32",
- "relations": {
- "self": {
- "type": "recordingServerMulticasts",
- "id": "536c696f-29c3-4be8-8e35-be5720192620"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "shutdownOnStorageFailure": false,
- "storages": [
- {
- "archiveStorages": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "displayName": "ArchiveSchedule",
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Storage may have a long description",
- "diskPath": "c:\\encryptedStorage",
- "displayName": "encryptedStorage",
- "encryptionMethod": "Light",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949",
- "isDefault": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "name": "encryptedStorage",
- "retainMinutes": 30,
- "signing": false,
- "relations": {
- "self": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "synchronizationTime": -1,
- "timeZoneName": "Romance Standard Time",
- "version": "24.2.12065.1",
- "relations": {
- "self": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "roles": [
- {
- "allowMobileClientLogOn": true,
- "allowSmartClientLogOn": true,
- "allowWebClientLogOn": true,
- "claims": [
- {
- "claimName": "vms_role",
- "claimProvider": "a873a5bb-ad32-47cb-bebc-6a95f9252e90",
- "claimValue": "admin",
- "displayName": "admin"
}
], - "description": "Role may have a long description",
- "displayName": "Default Role",
- "dualAuthorizationRequired": false,
- "id": "4a6c31be-631c-48a7-b5bd-f8d65291c8d8",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "makeUsersAnonymousDuringPTZSession": false,
- "name": "Default Role",
- "roleType": "UserDefined",
- "users": [
- {
- "accountName": "Bob",
- "description": "User may have a long description",
- "displayName": "Bob",
- "domain": "[BASIC]",
- "identityType": "BasicUser",
- "memberOf": "string",
- "memberOfRoles": "string",
- "members": "string",
- "sid": "083BDFD6-F583-4F6B-BDFE-5819D287C243",
- "relations": {
- "self": {
- "type": "users",
- "id": "71456a60-cf20-4764-a7a0-a1f89ca56546"
}, - "parent": {
- "type": "users",
- "id": "71456a60-cf20-4764-a7a0-a1f89ca56546"
}
}
}
], - "relations": {
- "self": {
- "type": "roles",
- "id": "4a6c31be-631c-48a7-b5bd-f8d65291c8d8"
}
}
}
], - "rules": [
- {
- "always": true,
- "daysOfWeek": false,
- "description": "Rule may have a long description",
- "displayName": "Default Start Audio Feed Rule",
- "enabled": true,
- "failoverActive": false,
- "failoverInactive": false,
- "id": "43609ca5-bfdd-4238-88ff-686b6657138f",
- "name": "Default Start Audio Feed Rule",
- "outsideTimeProfile": false,
- "startActions": "StartFeed",
- "startRuleType": "TimeInterval",
- "stopActions": "StopFeed",
- "stopRuleType": "TimeInterval",
- "timeOfDayBetween": false,
- "withinTimeProfile": false,
- "relations": {
- "self": {
- "type": "rules",
- "id": "43609ca5-bfdd-4238-88ff-686b6657138f"
}
}
}
], - "saveSearches": [
- {
- "availability": "Public",
- "description": "SaveSearches may have a long description",
- "displayName": "MySaveSearch",
- "id": "6815cc27-524e-4664-8d1c-28041e28a4d4",
- "includesScopeItems": false,
- "name": "MySaveSearch",
- "searchQuery": "searchQuery",
- "relations": {
- "self": {
- "type": "saveSearches",
- "id": "6815cc27-524e-4664-8d1c-28041e28a4d4"
}
}
}
], - "serviceAccount": "S-1-5-20",
- "speakerGroups": [
- {
- "builtIn": false,
- "description": "SpeakerGroup may have a long description",
- "displayName": "Speaker Group",
- "id": "097b561d-e5b4-4c73-be5e-8289a3df0390",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Speaker Group",
- "speakerGroups": [
- { }
], - "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": null,
- "id": null
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "relations": {
- "self": {
- "type": "speakerGroups",
- "id": "097b561d-e5b4-4c73-be5e-8289a3df0390"
}
}
}
], - "stateGroups": [
- {
- "displayName": "Live FPS",
- "id": "14a4425c-7410-48c8-b08b-f3f2c0d843ce",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Live FPS",
- "states": [
- "string"
], - "relations": {
- "self": {
- "type": "stateGroups",
- "id": "14a4425c-7410-48c8-b08b-f3f2c0d843ce"
}
}
}
], - "synchronizationStatus": 0,
- "systemAddresses": [
- {
- "addressType": "Internal",
- "relations": {
- "self": {
- "type": "systemAddresses",
- "id": "99b5bd81-ffbe-456d-b9d6-877e605440ea"
}
}
}
], - "timeProfiles": [
- {
- "description": "TimeProfile may have a long description",
- "displayName": "Day Length Time Profile",
- "id": "da463d61-0d95-42a7-a063-918387743029",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Day Length Time Profile",
- "sunclockGPSCoordinate": "N55 00 E08 50",
- "sunclockSunRise": 0,
- "sunclockSunSet": 0,
- "sunclockTimeZone": "Romance Standard Time",
- "timeProfileType": "Sunclock",
- "timeProfileAppointmentRecur": [
- {
- "allDayEvent": false,
- "appointmentRootId": "450f9a4c-273b-47f0-aea5-b7b36b46a5a0",
- "displayName": "My recurring appointment",
- "endDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "recurrenceDescription": "Occurs every day effective 8/19/2024 until 8/19/2124 from 10:54 AM to 11:54 AM.",
- "recurrenceOccurrenceDuration": "01:00:00",
- "recurrenceOccurrenceStartTime": "10:54:01",
- "recurrencePatternDayOfMonth": 23,
- "recurrencePatternDaysOfWeek": 127,
- "recurrencePatternFrequency": "Daily",
- "recurrencePatternInterval": 1,
- "recurrencePatternMonthOfYear": 9,
- "recurrencePatternOccurrenceOfDayInMonth": "Fourth",
- "recurrencePatternType": "Calculated",
- "recurrenceRangeEndDate": "2022-05-23T09:24:58.9130000+02:00",
- "recurrenceRangeLimit": "LimitByDate",
- "recurrenceRangeMaxOccurrences": 10,
- "recurrenceRangeStartDate": "2022-05-23T09:24:58.9130000+02:00",
- "startDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "subject": "My recurring appointment"
}
], - "timeProfileAppointmentRoot": [
- {
- "allDayEvent": false,
- "displayName": "My appointment",
- "endDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "originalStartDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "startDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "subject": "My appointment"
}
], - "relations": {
- "self": {
- "type": "timeProfiles",
- "id": "da463d61-0d95-42a7-a063-918387743029"
}
}
}
], - "timeZone": "Romance Standard Time",
- "toolOptions": [
- {
- "deviceErrorTimeoutSec": "0",
- "displayName": "Recording Server options",
- "pausePatrollingTimeoutSec": 600,
- "ptzManualSessionTimeoutSec": 15,
- "ptzReservedSessionTimeoutSec": 3600,
- "ptzUseDefaultPresetAsPtzHome": false,
- "relations": {
- "self": {
- "type": "toolOptions",
- "id": "ec9c3acc-518e-4cfd-931b-7ee69925b82c"
}
}
}
], - "userDefinedEvents": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "displayName": "Event Low",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Event Low",
- "subtype": "UserDefined",
- "relations": {
- "self": {
- "type": "userDefinedEvents",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1"
}
}
}
], - "version": "24.2.0.1",
- "videoWalls": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "VideoWall may have a long description",
- "displayName": "My wall",
- "height": 200,
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "monitors": [
- {
- "aspectRatio": "Aspect4x3",
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Monitor may have a long description",
- "displayName": "Front desk monitor",
- "emptyViewItems": "Preserve",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f",
- "insertionMethod": "Linked",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "locationX": 0,
- "locationY": 0,
- "monitorPresets": [
- {
- "definitionXml": "<view viewlayouttype=\\\"VideoOS.RemoteClient.Application.Data.ViewLayouts.ViewLayout5x5, VideoOS.RemoteClient.Application\\\" shortcut=\\\"\\\" displayname=\\\"Night\\\" id=\\\"f1e9dcfd-7353-4d26-9475-22800c41d796\\\"><viewitems><viewitem id=\\\"d1001d9e-2b18-46b0-a94e-e354cd50a26c\\\" shortcut=\\\"\\\" displayname=\\\"LPR camera\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\"><iteminfo lastknowncameradisplayname=\\\"LPR camera\\\" cameraid=\\\"16482501-1319-440f-967b-0fc076ba7667\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" ipixsplitmode=\\\"0\\\" keepimagequalitywhenmaximized=\\\"False\\\" maintainimageaspectratio=\\\"True\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" /><properties /></viewitem><viewitem id=\\\"e1473120-02ed-449f-bda6-9497568ce546\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"69199daa-86a7-4635-bc6f-cbc51fe558c6\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"546ba8b8-9482-44e4-abcc-b1d0dc14c155\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"ec210df8-c22a-434e-86e2-b725e76559df\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"95a39cf2-f405-4f67-8a55-72b0c0f5f38a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a68489af-6a9f-46e2-8634-05e1f41e111d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"7d66ee08-dba7-4517-b2b5-f9209d9b24c4\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"198cfe1d-7431-49e0-92ec-c1e86b56a007\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"c697cc7c-a9be-4de8-a921-02e7d7eb2d35\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"b9afb702-ac3d-4e2a-9eed-670db1163c43\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"711bcf13-b31b-42be-8079-f53c3ca278de\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2fbd75f7-7a1a-4bd0-a670-b13d9a8a9773\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"1442394e-9d1e-49d6-b00c-5bae1612ba5a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"928d5bdd-65c2-4d36-9970-34798bcaca4b\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"78ad23d0-81ca-4ebb-90d0-a0769b4684c1\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a662932e-0ee5-4c39-93f0-eb19f481cbad\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"8ee8af16-6408-4319-bb29-6999e7b8c588\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2004163d-5499-47b7-a0e0-873d1e16c92d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"820ebb51-3112-42d5-9ef8-9902052b0cab\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"07010b7c-758e-4ac0-9f01-0451429700d5\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"27dc28f4-e89e-44c2-a7cc-d4b08cf0c727\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"72131cb8-4e56-459c-863f-549bb17dad07\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"0086d81b-1e3c-4cc5-8c24-86f32768dd0a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"f55568ff-7158-418a-a56e-80e437cdf875\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem></viewitems><properties><property value=\\\"<ViewLayout><Icon>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</Icon><ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem></ViewItems></ViewLayout>\\\" name=\\\"LayoutPropperty\\\" /></properties></view>",
- "displayName": "Night",
- "id": "23b6c495-5fbd-4f4e-9a44-23d3e55f7adc",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Night",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "monitorSize": 20,
- "monitorState": "string",
- "name": "Front desk monitor",
- "noLayout": "Preserve",
- "view": {
- "type": "views",
- "id": "01c5dada-2530-439c-9a2f-08af5dd45813"
}, - "relations": {
- "self": {
- "type": "monitors",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f"
}, - "parent": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
], - "name": "My wall",
- "statusText": true,
- "titleBar": "None",
- "videoWallPresets": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "VideoWallPreset may have a long description",
- "displayName": "Night",
- "id": "3cc421f4-f20e-4254-a472-425ded951bc4",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Night",
- "relations": {
- "self": {
- "type": "videoWallPresets",
- "id": "3cc421f4-f20e-4254-a472-425ded951bc4"
}, - "parent": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
], - "width": 200,
- "relations": {
- "self": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
], - "viewGroups": [
- {
- "description": "ViewGroup may have a long description",
- "displayName": "Basic User Group",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Basic User Group",
- "viewGroupDataXml": "string",
- "viewGroups": [
- { }
], - "views": [
- {
- "displayName": "2x1 Audio",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "layoutCustomId": "string",
- "layoutIcon": "iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAALEgAACxIB0t1+/AAAAHdJREFUOE+lkzEKRCEUA3NS+WAhWAgWgoh3z5LtQwqLqcY3VgFJvPB0rI9x76VDD5LHOYcOBZLH3psOBZLHWosOBZLHnJMOBZLHGIMOBZJH750OBZJHa40OBZJHrZUOBZLH9310KJA8Sil0KJD8+xZelvgf02vgB00kj9vJK246AAAAAElFTkSuQmCC",
- "layoutViewItems": "<ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem><ViewItem><Position><X>500</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem></ViewItems>",
- "name": "2x1 Audio",
- "shortcut": "string",
- "viewLayoutType": "string",
- "viewItem": [
- {
- "displayName": "Index 0",
- "viewItemDefinitionXml": "<viewitem id=\\\"f11ff2f9-6e20-4e50-8528-e6b27b4f9a0b\\\" displayname=\\\"Camera ViewItem\\\" shortcut=\\\"\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\" smartClientId=\\\"8B1A85EF-9A4E-4CD8-9214-85EA148676BD\\\"><iteminfo cameraid=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" lastknowncameradisplayname=\\\"Mini Sequencer camera\\\" livestreamid=\\\"00000000-0000-0000-0000-000000000000\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" maintainimageaspectratio=\\\"True\\\" usedefaultdisplaysettings=\\\"True\\\" showtitlebar=\\\"True\\\" keepimagequalitywhenmaximized=\\\"False\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" pointandclickmode=\\\"0\\\" usingproperties=\\\"True\\\" /><properties><property name=\\\"cameraid\\\" value=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" /><property name=\\\"framerate\\\" value=\\\"0\\\" /><property name=\\\"imagequality\\\" value=\\\"100\\\" /><property name=\\\"lastknowncameradisplayname\\\" value=\\\"Mini Sequencer camera\\\" /></properties></viewitem>",
- "viewItemPosition": 0
}
], - "relations": {
- "self": {
- "type": "views",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208"
}, - "parent": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}
], - "relations": {
- "self": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}
], - "relations": {
- "self": {
- "type": "sites",
- "id": "00645af0-db75-40c2-82cc-2ad2e820aca9"
}
}
}
}
Management Server
id required | string <guid> Example: 00645af0-db75-40c2-82cc-2ad2e820aca9 Id of the object |
description | string Description |
name | string Name |
object |
{- "description": "System may have a long description",
- "name": "DKTA-0810SK0016",
- "relations": {
- "self": {
- "type": "sites",
- "id": "00645af0-db75-40c2-82cc-2ad2e820aca9"
}
}
}
{- "data": {
- "accessControlSystems": [
- {
- "accessControlUnits": [
- {
- "accessControlUnits": [
- { }
], - "displayName": "Controller 1",
- "id": "e4d81a4d-b0cc-4033-be19-2b50a4469548",
- "name": "Controller 1",
- "ruleGroup": "AccessControlRuleGroup[16F7C724-D91F-1443-1D8E-26F90A94FBB7]",
- "relations": {
- "self": {
- "type": "accessControlUnits",
- "id": "e4d81a4d-b0cc-4033-be19-2b50a4469548"
}, - "parent": {
- "type": "accessControlSystems",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
}
}
], - "displayName": "Test System",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6",
- "name": "Test System",
- "ruleGroup": "AccessControlRuleGroup[7142F91D-9959-0519-25B7-B47381590EE9]",
- "relations": {
- "self": {
- "type": "accessControlSystems",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
}
}
], - "alarmDefinitions": [
- {
- "assignableToAdmins": false,
- "autoClose": false,
- "category": "97bda9c2-bb15-4106-a59b-e72b193820ee",
- "description": "AlarmDefinition may have a long description",
- "disableEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "displayName": "Alarm High Priority",
- "enabled": true,
- "enableEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "enableRule": "0",
- "eventType": "0fcb1955-0e80-4fd4-a78a-db47ee89700c",
- "eventTypeGroup": "5946b6fa-44d9-4f4c-82bb-46a17b924265",
- "id": "9094284b-34c3-4e53-a3d7-8e7e3652567b",
- "managementTimeoutEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "managementTimeoutTime": "00:01:00",
- "mapType": "0",
- "name": "Alarm High Priority",
- "owner": "TA Test User (ta\\tatest)",
- "priority": "8188ff24-b5da-4c19-9ebf-c1d8fc2caa75",
- "relatedCameraList": [
- {
- "type": "cameras",
- "id": "abbe8d6b-765d-4a42-8e5c-14a2e5262df1"
}
], - "relatedMap": "00000000-0000-0000-0000-000000000000",
- "sourceList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "timeProfile": {
- "type": "timeProfiles",
- "id": "3a9a3f27-feb0-4781-85ba-0f6e7251eef1"
}, - "triggerEventlist": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "relations": {
- "self": {
- "type": "alarmDefinitions",
- "id": "9094284b-34c3-4e53-a3d7-8e7e3652567b"
}
}
}
], - "analyticsEvents": [
- {
- "description": "AnalyticsEvent may have a long description",
- "displayName": "MyAnalyticsEvent",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyAnalyticsEvent",
- "sourceArray": [
- "string"
], - "relations": {
- "self": {
- "type": "analyticsEvents",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2"
}
}
}
], - "basicUsers": [
- {
- "canChangePassword": true,
- "claims": [
- {
- "claimName": "vms_role",
- "claimProvider": "a873a5bb-ad32-47cb-bebc-6a95f9252e90",
- "claimValue": "admin",
- "displayName": "admin"
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "BasicUser may have a long description",
- "displayName": "Bob",
- "forcePasswordChange": false,
- "id": "3d7bc850-a0a9-465e-a362-b4d4c07c09b3",
- "isExternal": false,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "lockoutEnd": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bob",
- "sid": "083BDFD6-F583-4F6B-BDFE-5819D287C243",
- "status": "Enabled",
- "relations": {
- "self": {
- "type": "basicUsers",
- "id": "3d7bc850-a0a9-465e-a362-b4d4c07c09b3"
}
}
}
], - "cameraGroups": [
- {
- "builtIn": false,
- "cameraGroups": [
- { }
], - "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": null,
- "id": null
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": null,
- "order": null,
- "presetId": null,
- "waitTime": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": null,
- "displayName": null,
- "liveDefault": null,
- "liveMode": null,
- "name": null,
- "recordTo": null,
- "streamReferenceId": null,
- "useEdge": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "description": "CameraGroup may have a long description",
- "displayName": "Direct Show",
- "id": "815ee09f-312b-489b-b541-f16d2d1fc901",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Direct Show",
- "relations": {
- "self": {
- "type": "cameraGroups",
- "id": "815ee09f-312b-489b-b541-f16d2d1fc901"
}
}
}
], - "childSites": [
- {
- "childSites": [
- { }
], - "connectionState": "Attached",
- "description": "Site may have a long description",
- "displayName": "DKTA-0814SK0013",
- "id": "89b2eec5-8235-4382-8312-c55d87a7b510",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "serviceAccount": "S-1-5-20",
- "siteAddresses": [
- {
- "addressType": "Internal",
}
], - "synchronizationStatus": 201,
- "version": "24.2.0.1",
- "relations": {
- "self": {
- "type": "childSites",
- "id": "89b2eec5-8235-4382-8312-c55d87a7b510"
}
}
}
], - "clientProfiles": [
- {
- "description": "ClientProfile may have a long description",
- "displayName": "My profile",
- "id": "210ff07d-91e6-48f4-8ade-ae79d29d749e",
- "isDefaultProfile": false,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "My profile",
- "clientProfileAccessControl": {
- "displayName": "Access Control",
- "showAccessRequestNotifications": "Yes",
- "showAccessRequestNotificationsLocked": false
}, - "clientProfileAdvanced": {
- "advancedAdaptiveStreaming": "Disabled",
- "advancedAdaptiveStreamingLocked": false,
- "advancedDeinterlacing": "Default",
- "advancedDeinterlacingLocked": false,
- "advancedMaxDecodingThreads": "Auto",
- "advancedMaxDecodingThreadsLocked": false,
- "advancedMulticast": "Enabled",
- "advancedMulticastLocked": false,
- "advancedTimeZone": "LocalMachine",
- "advancedTimeZoneCustom": "Dateline Standard Time",
- "advancedTimeZoneCustomLocked": false,
- "advancedTimeZoneLocked": false,
- "advancedVideoPlayerDiagnosticLevel": "Level0",
- "advancedVideoPlayerDiagnosticLevelLocked": false,
- "advancedVideoPlayerHardwareDecodingMode": "Auto",
- "advancedVideoPlayerHardwareDecodingModeLocked": false,
- "displayName": "Advanced"
}, - "clientProfileAlarmManager": {
- "alarmManagerPlaySoundNotifications": "No",
- "alarmManagerPlaySoundNotificationsLocked": false,
- "alarmManagerShowDesktopNotifications": "No",
- "alarmManagerShowDesktopNotificationsLocked": false,
- "displayName": "Alarm Manager"
}, - "clientProfileExport": {
- "displayName": "Export",
- "exportDestinationType": "Both",
- "exportDestinationTypeLocked": false,
- "exportMergeAddPadding": "No",
- "exportMergeAddPaddingLocked": false,
- "exportMergeFormat": "MP4",
- "exportMergeFormatLocked": false,
- "exportMergeFramesPerSecond": "Fps30",
- "exportMergeFramesPerSecondLocked": false,
- "exportMergeMediaPlayerFormat": "Unavailable",
- "exportMergeMediaPlayerFormatLocked": true,
- "exportMergePreventUpscaling": "No",
- "exportMergePreventUpscalingLocked": false,
- "exportMergeQuality": "Medium",
- "exportMergeQualityLocked": false,
- "exportMergeResolution": "FullHD",
- "exportMergeResolutionLocked": false,
- "exportMergeVideoClipType": "Both",
- "exportMergeVideoClipTypeLocked": false,
- "exportPrivacyMask": "Available",
- "exportPrivacyMaskLocked": false,
- "exportSmartClientPlayerEncryptDatabases": "Yes",
- "exportSmartClientPlayerEncryptDatabasesLocked": true,
- "exportSmartClientPlayerEncryptionStrength": "AES256",
- "exportSmartClientPlayerEncryptionStrengthLocked": true,
- "exportSmartClientPlayerEncryptPassword": "string",
- "exportSmartClientPlayerEncryptPasswordLocked": false,
- "exportSmartClientPlayerFormat": "Available",
- "exportSmartClientPlayerFormatLocked": false,
- "exportSmartClientPlayerGlobalCommentsContent": "string",
- "exportSmartClientPlayerGlobalCommentsContentLocked": false,
- "exportSmartClientPlayerGlobalCommentsMode": "Optional",
- "exportSmartClientPlayerGlobalCommentsModeLocked": false,
- "exportSmartClientPlayerIncludePlayer": "Yes",
- "exportSmartClientPlayerIncludePlayerLocked": false,
- "exportSmartClientPlayerIndividualCommentsMode": "Optional",
- "exportSmartClientPlayerIndividualCommentsModeLocked": false,
- "exportSmartClientPlayerLockForReExport": "Yes",
- "exportSmartClientPlayerLockForReExportLocked": true,
- "exportSmartClientPlayerSignData": "Yes",
- "exportSmartClientPlayerSignDataLocked": true,
- "exportStillImageFormat": "Unavailable",
- "exportStillImageFormatLocked": true,
- "exportStillImageTimestamp": "No",
- "exportStillImageTimestampLocked": false,
- "exportVideoClipCodecProperties": "Available",
- "exportVideoClipCodecPropertiesLocked": false,
- "exportVideoClipFormat": "Unavailable",
- "exportVideoClipFormatLocked": true,
- "exportVideoClipFrameRate": "No",
- "exportVideoClipFrameRateLocked": false,
- "exportVideoClipOutputType": "MKV",
- "exportVideoClipOutputTypeLocked": true,
- "exportVideoClipTextsContent": "string",
- "exportVideoClipTextsContentLocked": false,
- "exportVideoClipTextsMode": "Optional",
- "exportVideoClipTimestamp": "No",
- "exportVideoClipTimestampLocked": false,
- "exportVideoClipType": "Both",
- "exportVideoClipTypeLocked": false,
- "functionsPlaybackExportPath": "Default",
- "functionsPlaybackExportPathCustom": "C:\\Export",
- "functionsPlaybackExportPathCustomLocked": false,
- "panesPlaybackExport": "Available"
}, - "clientProfileGeneral": {
- "alarmManagerTab": "Available",
- "applicationAutoLogin": "Available",
- "applicationEvidenceLock": "Available",
- "applicationExitButton": "Available",
- "applicationHideMousePointerTimeout": "Seconds_5",
- "applicationHideMousePointerTimeoutLocked": false,
- "applicationInactivityTimeout": 0,
- "applicationJoystickSetup": "Available",
- "applicationKeyboardSetup": "Available",
- "applicationLiftPrivacyMaskTimeout": "Minutes_30",
- "applicationLogoutButton": "Available",
- "applicationMaximizeButton": "Available",
- "applicationMinimizeButton": "Available",
- "applicationNewSCVersionText": "string",
- "applicationNewSCVersionWindow": "Show",
- "applicationOnlineHelp": "Available",
- "applicationOnlineHelpLocked": false,
- "applicationOptionsDialogButton": "Available",
- "applicationRememberPassword": "Available",
- "applicationSnapshotAvailability": "Available",
- "applicationSnapshotAvailabilityLocked": false,
- "applicationSnapshotPath": "c:\\Snapshots",
- "applicationSnapshotPathLocked": false,
- "applicationStartMode": "Last",
- "applicationStartModeLocked": false,
- "applicationStartView": "Last",
- "applicationStartViewLocked": false,
- "applicationTransactTab": "Available",
- "applicationVideoTutorials": "Available",
- "applicationVideoTutorialsLocked": false,
- "centralizedSearchMaxDeviceCount": "Count_100",
- "centralizedSearchTab": "Available",
- "displayName": "General",
- "generalApplicationMaximization": "NormalWindow",
- "generalApplicationMaximizationLocked": false,
- "generalCameraErrors": "BlackImageWithOverlay",
- "generalCameraErrorsLocked": false,
- "generalCameraStoppedMessage": "BlackImageWithOverlay",
- "generalCameraStoppedMessageLocked": false,
- "generalDefaultPtzPointAndClickMode": "VirtualJoystick",
- "generalDefaultPtzPointAndClickModeLocked": false,
- "generalDefaultVideoBuffer": "Standard",
- "generalDefaultVideoBufferLocked": false,
- "generalEmptySpaces": "CompanyLogo",
- "generalEmptySpacesLocked": false,
- "generalHtmlViewItemScripting": "Disabled",
- "generalServerErrors": "Hidden",
- "generalServerErrorsLocked": false,
- "generalTimeInTitlebar": "Show",
- "generalTimeInTitlebarLocked": false,
- "generalTitleBar": "Show",
- "generalTitleBarLocked": false,
- "generalViewGridSpacer": "Pixel1",
- "generalViewGridSpacerLocked": false,
- "systemMonitorTab": "Available",
- "viewsCustomLogoInEmptySpaces": "string"
}, - "clientProfileGisMap": {
- "displayName": "Smart map",
- "gisMapBingMapKey": "string",
- "gisMapBingMapKeyLocked": true,
- "gisMapCacheCleanUp": "OnScClose_IfFileNotUsed",
- "gisMapCacheCleanUpLocked": false,
- "gisMapCreateLayerLocation": "No",
- "gisMapCreateLayerLocationLocked": false,
- "gisMapGoogleMapClientId": "string",
- "gisMapGoogleMapClientIdLocked": true,
- "gisMapGoogleMapPrivateKey": "string",
- "gisMapGoogleMapPrivateKeyLocked": true,
- "gisMapGoogleMapSigningSecret": "string",
- "gisMapGoogleMapSigningSecretLocked": true,
- "gisMapOpenStreetMapAlternativeServer": "string",
- "gisMapOpenStreetMapAlternativeServerLocked": true,
- "gisMapOpenStreetMapGeographicLayer": "Unavailable",
- "gisMapOpenStreetMapGeographicLayerLocked": true
}, - "clientProfileLive": {
- "displayName": "Live",
- "functionsLiveBookmarkMode": "Quick",
- "functionsLiveBookmarkModeLocked": false,
- "functionsLiveBoundingBoxes": "Available",
- "functionsLiveBoundingBoxesLocked": false,
- "functionsLiveCameraPlayback": "Available",
- "functionsLiveCameraPlaybackLocked": false,
- "functionsLiveOverlayButtons": "Available",
- "functionsLiveOverlayButtonsLocked": false,
- "functionsLivePrintAvailability": "Available",
- "functionsLivePrintAvailabilityLocked": false,
- "panesLiveAudio": "Available",
- "panesLiveAudioLocked": false,
- "panesLiveEvents": "Available",
- "panesLiveEventsLocked": false,
- "panesLiveMIPPlugin": "Available",
- "panesLiveMIPPluginLocked": false,
- "panesLiveOutputs": "Available",
- "panesLiveOutputsLocked": false,
- "panesLiveSystemOverview": "Available",
- "panesLiveSystemOverviewLocked": false,
- "panesLiveTab": "Available",
- "panesLiveViews": "Available",
- "panesLiveViewsLocked": false
}, - "clientProfilePlayback": {
- "displayName": "Playback",
- "functionsPlaybackBookmarkMode": "Detail",
- "functionsPlaybackBookmarkModeLocked": false,
- "functionsPlaybackBoundingBoxes": "Available",
- "functionsPlaybackBoundingBoxesLocked": false,
- "functionsPlaybackIndependentPlayback": "Available",
- "functionsPlaybackPrintReportCopyRights": "Show",
- "functionsPlaybackPrintReportHeadline": "Default",
- "functionsPlaybackPrintReportHeadlineLocked": false,
- "functionsPlaybackPrintReportHeadlineText": "string",
- "functionsPlaybackPrintReportUserInformation": "Show",
- "panesPlaybackAudio": "Available",
- "panesPlaybackAudioLocked": false,
- "panesPlaybackMIPPlugin": "Available",
- "panesPlaybackMIPPluginLocked": false,
- "panesPlaybackPrint": "Available",
- "panesPlaybackPrintLocked": false,
- "panesPlaybackSystemOverview": "Available",
- "panesPlaybackSystemOverviewLocked": false,
- "panesPlaybackTab": "Available",
- "panesPlaybackViews": "Available",
- "panesPlaybackViewsLocked": false
}, - "clientProfileSetup": {
- "displayName": "Setup",
- "functionsSetupEnableVideoBufferingOption": "Available",
- "functionsSetupEnableVideoBufferingOptionLocked": false,
- "functionsSetupOverlayButtons": "Available",
- "functionsSetupOverlayButtonsLocked": false,
- "mapEditGisMap": "Available",
- "mapEditMaps": "Available",
- "panesSetupMIPPlugin": "Available",
- "panesSetupMIPPluginLocked": false,
- "panesSetupOverlayButtons": "Available",
- "panesSetupOverlayButtonsLocked": false,
- "panesSetupProperties": "Available",
- "panesSetupPropertiesLocked": false,
- "panesSetupSystemOverview": "Available",
- "panesSetupSystemOverviewLocked": false,
- "panesSetupTab": "Available",
- "panesSetupViews": "Available",
- "panesSetupViewsLocked": false
}, - "clientProfileTimeline": {
- "displayName": "Timeline",
- "timelineAllCamerasTimeline": "Show",
- "timelineAllCamerasTimelineLocked": false,
- "timelineBookmarks": "Show",
- "timelineBookmarksLocked": false,
- "timelineHideForNormalViewsTimeout": "Disabled",
- "timelineHideForNormalViewsTimeoutLocked": false,
- "timelineHideForSmartWallViewsTimeout": "Seconds_5",
- "timelineHideForSmartWallViewsTimeoutLocked": false,
- "timelineIncomingAudio": "Hide",
- "timelineIncomingAudioLocked": false,
- "timelineMipData": "Hide",
- "timelineMipDataLocked": false,
- "timelineMipMarker": "Hide",
- "timelineMipMarkerLocked": false,
- "timelineMotion": "Show",
- "timelineMotionLocked": false,
- "timelineOutgoingAudio": "Hide",
- "timelineOutgoingAudioLocked": false,
- "timelineSkipGaps": "DoSkipGaps",
- "timelineSkipGapsLocked": false
}, - "clientProfileViewLayouts": {
- "disabledViewLayouts": [
- {
- "type": "layouts",
- "id": "4514ed40-a3ee-4b47-94ca-3bb7e9f14249"
}
], - "displayName": "View layouts"
}, - "relations": {
- "self": {
- "type": "clientProfiles",
- "id": "210ff07d-91e6-48f4-8ade-ae79d29d749e"
}
}
}
], - "compressors": [
- {
- "aviGenerationConfigData": "string",
- "aviGenerationDataRate": 97,
- "aviGenerationFlags": 0,
- "aviGenerationHandler": 1129730893,
- "aviGenerationKeyFrames": 10,
- "aviGenerationQuality": 75,
- "aviGenerationSelected": false,
- "displayName": "Microsoft Video 1",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "relations": {
- "self": {
- "type": "compressors",
- "id": "a4a1d500-36b9-46d5-965e-7adf1ff1897e"
}
}
}
], - "computerName": "DKTA-0810SK0016",
- "description": "System may have a long description",
- "displayName": "DKTA-0810SK0016",
- "domainName": "ta.rd.local",
- "eventTypeGroups": [
- {
- "analyticsEvents": [
- {
- "description": "AnalyticsEvent may have a long description",
- "displayName": "MyAnalyticsEvent",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyAnalyticsEvent",
- "sourceArray": [
- "string"
], - "relations": {
- "self": {
- "type": "analyticsEvents",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2"
}
}
}
], - "displayName": "Device - Predefined",
- "eventTypes": [
- {
- "builtIn": true,
- "counterEventID": "0ee90664-2924-42a0-a816-4129d0ecabdc",
- "description": "EventType may have a long description",
- "displayName": "Communication Stopped",
- "generatorGroupId": "string",
- "generatorGroupName": "string",
- "generatorID": "string",
- "generatorName": "string",
- "generatorSubtype": "string",
- "generatorType": "Device",
- "id": "6df795fa-2b74-48fe-9243-6c96f1104acd",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "CommunicationStopped",
- "occursGlobally": false,
- "sourceArray": [
- "string"
], - "sourceFilterArray": [
- "string"
], - "stateGroupId": "53b40c77-cf48-42a2-a432-db65ae3afc7a",
- "relations": {
- "self": {
- "type": "eventTypes",
- "id": "6df795fa-2b74-48fe-9243-6c96f1104acd"
}, - "parent": {
- "type": "eventTypeGroups",
- "id": "29101d41-f0d7-44be-8d14-5f21c57d6bf0"
}
}
}
], - "genericEvents": [
- {
- "dataSource": "GenericEventDataSource[6dfbcf65-fdbf-4f69-898b-f9251a51854d]",
- "displayName": "MyGenericEvent",
- "enabled": true,
- "expression": "\\\"abc\\\"",
- "expressionType": "0",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyGenericEvent",
- "priority": 100,
- "shadowId": "8adba830-9bb3-4234-b0cb-4e3d68356a96",
- "relations": {
- "self": {
- "type": "genericEvents",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c"
}
}
}
], - "userDefinedEvents": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "displayName": "Event Low",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Event Low",
- "subtype": "UserDefined",
- "relations": {
- "self": {
- "type": "userDefinedEvents",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1"
}
}
}
], - "relations": {
- "self": {
- "type": "eventTypeGroups",
- "id": "29101d41-f0d7-44be-8d14-5f21c57d6bf0"
}
}
}
], - "evidenceLockProfiles": [
- {
- "displayName": "Default evidence lock profile",
- "id": "231ee2e9-b527-494d-bc14-c5eda3745681",
- "name": "Default evidence lock profile",
- "retentionTimeOptions": [
- "string"
], - "relations": {
- "self": {
- "type": "evidenceLockProfiles",
- "id": "231ee2e9-b527-494d-bc14-c5eda3745681"
}
}
}
], - "failoverGroups": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "FailoverGroup may have a long description",
- "displayName": "MyFailoverGroup",
- "failoverRecorders": [
- {
- "activeWebServerUri": "string",
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "databasePath": "myDatabasePath",
- "description": "FailoverRecorder may have a long description",
- "displayName": "groupLevelFailover",
- "enabled": true,
- "hostName": "servertest",
- "id": "2b0bd2b2-aac8-40f5-b723-0c309f7b02eb",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "multicastServerAddress": "0.0.0.0",
- "name": "groupLevelFailover",
- "portNumber": 7563,
- "position": 0,
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "udpPort": 1111,
- "relations": {
- "self": {
- "type": "failoverRecorders",
- "id": "2b0bd2b2-aac8-40f5-b723-0c309f7b02eb"
}, - "parent": {
- "type": "failoverGroups",
- "id": "363c3fad-f404-49d2-baf4-a020ab50712c"
}
}
}
], - "id": "363c3fad-f404-49d2-baf4-a020ab50712c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyFailoverGroup",
- "relations": {
- "self": {
- "type": "failoverGroups",
- "id": "363c3fad-f404-49d2-baf4-a020ab50712c"
}
}
}
], - "genericEventDataSources": [
- {
- "dataSourceAddressFamily": "Both",
- "dataSourceAllowed": "string",
- "dataSourceAllowed6": "string",
- "dataSourceEcho": "None",
- "dataSourceEncoding": 1252,
- "dataSourceLog": false,
- "dataSourcePort": 5555,
- "dataSourceProtocol": "Tcp",
- "dataSourceSeparator": "string",
- "displayName": "MyGenericEventDataSource",
- "enabled": true,
- "id": "311a6f1d-7fa8-4bff-8daa-8850a08a6498",
- "name": "MyGenericEventDataSource",
- "relations": {
- "self": {
- "type": "genericEventDataSources",
- "id": "311a6f1d-7fa8-4bff-8daa-8850a08a6498"
}
}
}
], - "genericEvents": [
- {
- "dataSource": "GenericEventDataSource[6dfbcf65-fdbf-4f69-898b-f9251a51854d]",
- "displayName": "MyGenericEvent",
- "enabled": true,
- "expression": "\\\"abc\\\"",
- "expressionType": "0",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyGenericEvent",
- "priority": 100,
- "shadowId": "8adba830-9bb3-4234-b0cb-4e3d68356a96",
- "relations": {
- "self": {
- "type": "genericEvents",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c"
}
}
}
], - "gisMapLocations": [
- {
- "color": "#FFFF00AE",
- "displayName": "MyGisMapLocation",
- "id": "42bb29be-4bb2-4b59-986a-6314ce59569c",
- "name": "MyGisMapLocation",
- "positionX": 42,
- "positionY": 84,
- "scale": 1,
- "relations": {
- "self": {
- "type": "gisMapLocations",
- "id": "42bb29be-4bb2-4b59-986a-6314ce59569c"
}
}
}
], - "id": "00645af0-db75-40c2-82cc-2ad2e820aca9",
- "inputEventGroups": [
- {
- "builtIn": false,
- "description": "InputEventGroup may have a long description",
- "displayName": "Input Group 1",
- "id": "3f28850e-21be-45e1-bf27-607d8b930c75",
- "inputEventGroups": [
- { }
], - "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Input Group 1",
- "relations": {
- "self": {
- "type": "inputEventGroups",
- "id": "3f28850e-21be-45e1-bf27-607d8b930c75"
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "lastStatusHandshake": "2022-05-23T09:24:58.9130000+02:00",
- "layoutGroups": [
- {
- "description": "LayoutGroup may have a long description",
- "displayName": "4:3",
- "id": "b0e14cf5-0ead-4612-a2d0-9d071073c50d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "layouts": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "definitionXml": "<ViewLayout ViewLayoutType=\\\"VideoOS.RemoteClient.Application.Data.ViewLayouts.ViewLayoutCustom, VideoOS.RemoteClient.Application\\\" Id=\\\"e4391ae5-7d96-4a0f-835a-9019a73f269a\\\" ViewLayoutGroupId=\\\"7EB5B9CC-D56F-4785-BA72-4E71FADA8C6B\\\"><ViewLayoutIcon>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</ViewLayoutIcon><ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>1000</Width><Height>666</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>666</Y></Position><Size><Width>1000</Width><Height>333</Height></Size></ViewItem></ViewItems></ViewLayout>",
- "description": "Layout may have a long description",
- "displayName": "1 + 1",
- "id": "314254b7-be6b-4c5d-bf6b-aae579bf88c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "1 + 1",
- "relations": {
- "self": {
- "type": "layouts",
- "id": "314254b7-be6b-4c5d-bf6b-aae579bf88c0"
}, - "parent": {
- "type": "layoutGroups",
- "id": "b0e14cf5-0ead-4612-a2d0-9d071073c50d"
}
}
}
], - "name": "4:3",
- "relations": {
- "self": {
- "type": "layoutGroups",
- "id": "b0e14cf5-0ead-4612-a2d0-9d071073c50d"
}
}
}
], - "licenseInformations": [
- {
- "activationAutomatic": false,
- "careId": "string",
- "careLevel": "Premium",
- "displayName": "XProtect Corporate 2024 R2",
- "licenseDetails": [
- {
- "activated": "13",
- "changesWithoutActivation": "0 out of 0",
- "displayName": "Device License",
- "firstGraceExpirationDate": "Unrestricted",
- "graceExpired": "0",
- "inGrace": 0,
- "licenseType": "Device License",
- "note": "string",
- "notLicensed": "0",
- "pluginId": "00000000-0000-0000-0000-000000000000"
}
], - "licenseInstalledProducts": [
- {
- "carePlus": "2029-07-02T14:01:00.0000000Z",
- "carePremium": "2029-07-02T14:01:28.0000000Z",
- "displayName": "XProtect Corporate 2024 R2",
- "expirationDate": "Unrestricted",
- "pluginId": "00000000-0000-0000-0000-000000000000",
- "productDisplayName": "XProtect Corporate 2024 R2",
- "slc": "M01-C01-242-01-6C42E9"
}
], - "licenseOverviewAll": [
- {
- "activated": "13 out of 5000",
- "displayName": "Device License",
- "licenseType": "Device License",
- "pluginId": "00000000-0000-0000-0000-000000000000"
}
], - "productionEnvironment": "wtst",
- "sku": "XPCO",
- "slc": "M01-C01-242-01-6C42E9",
- "licenseProperties": [
- {
- "displayName": "SmartClientProfiles",
- "parameters": [
- {
- "key": "string",
- "value": "string"
}
]
}
], - "relations": {
- "self": {
- "type": "licenseInformations",
- "id": "f0e83649-e1aa-4424-a5be-cd507d041cd6"
}
}
}
], - "loginProviders": [
- {
- "callbackPath": "/signin-oidc",
- "clientId": "ms.idp",
- "clientSecret": "string",
- "clientSecretHasValue": true,
- "displayName": "TA External Provider",
- "enabled": true,
- "id": "cb707285-8180-49d3-89c9-2916186be755",
- "name": "TA External Provider",
- "promptForLogin": true,
- "registeredClaims": [
- {
- "caseSensitive": false,
- "displayName": "VMS role",
- "id": 1,
- "name": "vms_role",
- "relations": {
- "self": {
- "type": "registeredClaims",
- "id": "95206c2c-cf5f-46ca-9c64-4cb44b4e5a1e"
}, - "parent": {
- "type": "loginProviders",
- "id": "cb707285-8180-49d3-89c9-2916186be755"
}
}
}
], - "scopes": [
- "string"
], - "userNameClaimType": "string",
- "relations": {
- "self": {
- "type": "loginProviders",
- "id": "cb707285-8180-49d3-89c9-2916186be755"
}
}
}
], - "lprMatchLists": [
- {
- "customFields": "string",
- "displayName": "Unlisted license plate",
- "id": "55ae8798-1e4a-45c9-939a-d9a9ea444610",
- "name": "Unlisted license plate",
- "registrationNumbers": "string",
- "triggerEventList": [
- {
- "type": "outputs",
- "id": "aa25e56d-5065-4449-beed-bb724fb55ecc"
}
], - "relations": {
- "self": {
- "type": "lprMatchLists",
- "id": "55ae8798-1e4a-45c9-939a-d9a9ea444610"
}
}
}
], - "mailNotificationProfiles": [
- {
- "description": "MailNotificationProfile may have a long description",
- "displayName": "My mail notification profile2",
- "embedImages": true,
- "frameRate": 25,
- "id": "19d8f6ba-324f-4eed-8861-0e3f8763210d",
- "includeAVI": true,
- "includeImages": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "messageText": "My mail notification profile message",
- "name": "My mail notification profile2",
- "numberOfImages": 1,
- "recipients": [
- "string"
], - "subject": "My mail notification profile subject",
- "timeAfterEvent": 1,
- "timeBeforeEvent": 1,
- "timeBetweenImages": 1,
- "timeBetweenMails": 1,
- "relations": {
- "self": {
- "type": "mailNotificationProfiles",
- "id": "19d8f6ba-324f-4eed-8861-0e3f8763210d"
}
}
}
], - "masterSiteAddress": "string",
- "matrix": [
- {
- "address": "localhost",
- "description": "Matrix may have a long description",
- "displayName": "MyMatrix",
- "id": "4cb572c6-20af-4dba-a000-0b6104285607",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyMatrix",
- "password": "string",
- "port": 12345,
- "relations": {
- "self": {
- "type": "matrix",
- "id": "4cb572c6-20af-4dba-a000-0b6104285607"
}
}
}
], - "metadataGroups": [
- {
- "builtIn": false,
- "description": "MetadataGroup may have a long description",
- "displayName": "Metadata Group 1",
- "id": "b37f4500-1dd1-4995-bafa-baf09c9f64ec",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": null,
- "id": null
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "metadataGroups": [
- { }
], - "name": "Metadata Group 1",
- "relations": {
- "self": {
- "type": "metadataGroups",
- "id": "b37f4500-1dd1-4995-bafa-baf09c9f64ec"
}
}
}
], - "microphoneGroups": [
- {
- "builtIn": false,
- "description": "MicrophoneGroup may have a long description",
- "displayName": "Microphone Group",
- "id": "db393d9d-3008-4307-8e41-408dd7f920d5",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "microphoneGroups": [
- { }
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": null,
- "id": null
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "name": "Microphone Group",
- "relations": {
- "self": {
- "type": "microphoneGroups",
- "id": "db393d9d-3008-4307-8e41-408dd7f920d5"
}
}
}
], - "mipKinds": [
- {
- "dataVersion": 1,
- "displayName": "Incident properties",
- "displayOnGisMap": true,
- "id": "c5d5ab61-9eee-425a-96e9-62e08cac6b0f",
- "kindType": "ITEM",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "mipItems": [
- {
- "__Encrypt": false,
- "displayName": "Incident projects",
- "enabled": true,
- "GisPoint": "POINT EMPTY",
- "Id": "77F8F2A9-9DE8-4048-8D63-26BF44DCCED1",
- "LastModified": "2024-08-18T07:12:54.6400000Z",
- "mipItems": [
- { }
], - "Name": "Incident projects",
- "relations": {
- "self": {
- "type": "mipItems",
- "id": "9f44adfa-ceab-427a-b669-fc79cbcf04c9"
}, - "parent": {
- "type": "mipKinds",
- "id": "c5d5ab61-9eee-425a-96e9-62e08cac6b0f"
}
}
}
], - "modifiedUser": "TA\\TATest",
- "name": "Incident properties",
- "parentKind": "00000000-0000-0000-0000-000000000000",
- "pluginId": "6053b0b4-3e97-4a86-8e46-d1a9ce807ed1",
- "pluginName": "XProtect Incident Manager",
- "securityAction": "string",
- "relations": {
- "self": {
- "type": "mipKinds",
- "id": "c5d5ab61-9eee-425a-96e9-62e08cac6b0f"
}
}
}
], - "name": "DKTA-0810SK0016",
- "outputGroups": [
- {
- "builtIn": false,
- "description": "OutputGroup may have a long description",
- "displayName": "Test Driver Camera 1",
- "id": "806ebe93-aa00-4476-99ea-9e44418a7acd",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Camera 1",
- "outputGroups": [
- { }
], - "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "relations": {
- "self": {
- "type": "outputGroups",
- "id": "806ebe93-aa00-4476-99ea-9e44418a7acd"
}
}
}
], - "owner": [
- {
- "displayName": "Basic Information",
- "relations": {
- "self": {
- "type": "owner",
- "id": "f0ad19f5-3d26-4fde-a31f-92e8195f480a"
}
}
}
], - "physicalMemory": 0,
- "platform": "[Not Available]",
- "processors": 0,
- "recordingServers": [
- {
- "activeWebServerUri": "string",
- "description": "RecordingServer may have a long description",
- "displayName": "DKTA-0810SK0016",
- "enabled": true,
- "hardware": [
- {
- "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": null,
- "enabled": null,
- "fisheyeFieldOfView": null,
- "orientation": null,
- "registeredPanomorphLens": null,
- "registeredPanomorphLensNumber": null,
- "relations": { }
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": null,
- "displayName": null,
- "enabled": null,
- "excludeRegions": null,
- "generateMotionMetadata": null,
- "gridSize": null,
- "hardwareAccelerationMode": null,
- "id": null,
- "keyframesOnly": null,
- "manualSensitivity": null,
- "manualSensitivityEnabled": null,
- "processTime": null,
- "threshold": null,
- "useExcludeRegions": null,
- "relations": { }
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": null,
- "description": null,
- "displayName": null,
- "endPresetId": null,
- "endSpeed": null,
- "endTransitionTime": null,
- "id": null,
- "initSpeed": null,
- "initTransitionTime": null,
- "name": null,
- "patrollingEntry": [ ],
- "relations": { }
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": null,
- "enabled": null,
- "id": null,
- "privacyMaskXml": null,
- "relations": { }
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": null,
- "description": null,
- "devicePreset": null,
- "devicePresetInternalId": null,
- "displayName": null,
- "id": null,
- "locked": null,
- "name": null,
- "pan": null,
- "tilt": null,
- "zoom": null,
- "relations": { }
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": null,
- "stream": [ ],
- "relations": { }
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Hardware may have a long description",
- "displayName": "MultiStream Hardware",
- "enabled": true,
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "hardwareDriverPath": {
- "type": "hardwareDrivers",
- "id": "699dd024-4119-4e3d-b7dd-e2b371d18d79"
}, - "hardwareDriverSettings": [
- {
- "displayName": "Settings",
- "hardwarePtz": {
- "displayName": "Pan-Tilt-Zoom",
- "ptzUsePtzDeviceID": true
}, - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "hardwarePtzSettings": [
- {
- "displayName": "PTZ",
- "hardwarePtzDeviceSettings": [
- {
- "displayName": null,
- "ptzCOMPort": null,
- "ptzDeviceID": null,
- "ptzEnabled": null,
- "ptzProtocol": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "id": "965c4a97-449a-4b4b-b772-e50e7b44f700",
- "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "model": "StableFPS_T800",
- "name": "MultiStream Hardware",
- "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "passwordLastModified": "2022-05-23T09:24:58.9130000+02:00",
- "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "userName": "admin",
- "relations": {
- "self": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "hardwareDrivers": [
- {
- "displayName": "Mobotix M/D/V/S series",
- "driverRevision": "1.62",
- "driverType": "DevicePack",
- "driverVersion": "DevicePack: 13.2a, Device Pack, Build: Unknown",
- "groupName": "Mobotix",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97",
- "name": "Mobotix M/D/V/S series",
- "number": 86,
- "useCount": 0,
- "relations": {
- "self": {
- "type": "hardwareDrivers",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "hostName": "dkta-0810sk0016.ta.rd.local",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "multicastServerAddress": "0.0.0.0",
- "name": "DKTA-0810SK0016",
- "portNumber": 7563,
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "recordingServerFailovers": [
- {
- "displayName": "Failover settings",
- "failoverPort": 11000,
- "hotStandby": "FailoverRecorder[639DEDEB-FFA4-4449-8588-826061E895FF]",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9",
- "primaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "secondaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "relations": {
- "self": {
- "type": "recordingServerFailovers",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "recordingServerMulticasts": [
- {
- "displayName": "Multicast",
- "enabled": true,
- "id": "536c696f-29c3-4be8-8e35-be5720192620",
- "iPAddressEnd": "232.100.1.0",
- "iPAddressStart": "232.100.1.0",
- "MTU": "1500",
- "portRangeEnd": 47199,
- "portRangeStart": 47100,
- "TTL": "32",
- "relations": {
- "self": {
- "type": "recordingServerMulticasts",
- "id": "536c696f-29c3-4be8-8e35-be5720192620"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "shutdownOnStorageFailure": false,
- "storages": [
- {
- "archiveStorages": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "displayName": "ArchiveSchedule",
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Storage may have a long description",
- "diskPath": "c:\\encryptedStorage",
- "displayName": "encryptedStorage",
- "encryptionMethod": "Light",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949",
- "isDefault": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "name": "encryptedStorage",
- "retainMinutes": 30,
- "signing": false,
- "relations": {
- "self": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "synchronizationTime": -1,
- "timeZoneName": "Romance Standard Time",
- "version": "24.2.12065.1",
- "relations": {
- "self": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "roles": [
- {
- "allowMobileClientLogOn": true,
- "allowSmartClientLogOn": true,
- "allowWebClientLogOn": true,
- "claims": [
- {
- "claimName": "vms_role",
- "claimProvider": "a873a5bb-ad32-47cb-bebc-6a95f9252e90",
- "claimValue": "admin",
- "displayName": "admin"
}
], - "description": "Role may have a long description",
- "displayName": "Default Role",
- "dualAuthorizationRequired": false,
- "id": "4a6c31be-631c-48a7-b5bd-f8d65291c8d8",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "makeUsersAnonymousDuringPTZSession": false,
- "name": "Default Role",
- "roleType": "UserDefined",
- "users": [
- {
- "accountName": "Bob",
- "description": "User may have a long description",
- "displayName": "Bob",
- "domain": "[BASIC]",
- "identityType": "BasicUser",
- "memberOf": "string",
- "memberOfRoles": "string",
- "members": "string",
- "sid": "083BDFD6-F583-4F6B-BDFE-5819D287C243",
- "relations": {
- "self": {
- "type": "users",
- "id": "71456a60-cf20-4764-a7a0-a1f89ca56546"
}, - "parent": {
- "type": "users",
- "id": "71456a60-cf20-4764-a7a0-a1f89ca56546"
}
}
}
], - "relations": {
- "self": {
- "type": "roles",
- "id": "4a6c31be-631c-48a7-b5bd-f8d65291c8d8"
}
}
}
], - "rules": [
- {
- "always": true,
- "daysOfWeek": false,
- "description": "Rule may have a long description",
- "displayName": "Default Start Audio Feed Rule",
- "enabled": true,
- "failoverActive": false,
- "failoverInactive": false,
- "id": "43609ca5-bfdd-4238-88ff-686b6657138f",
- "name": "Default Start Audio Feed Rule",
- "outsideTimeProfile": false,
- "startActions": "StartFeed",
- "startRuleType": "TimeInterval",
- "stopActions": "StopFeed",
- "stopRuleType": "TimeInterval",
- "timeOfDayBetween": false,
- "withinTimeProfile": false,
- "relations": {
- "self": {
- "type": "rules",
- "id": "43609ca5-bfdd-4238-88ff-686b6657138f"
}
}
}
], - "saveSearches": [
- {
- "availability": "Public",
- "description": "SaveSearches may have a long description",
- "displayName": "MySaveSearch",
- "id": "6815cc27-524e-4664-8d1c-28041e28a4d4",
- "includesScopeItems": false,
- "name": "MySaveSearch",
- "searchQuery": "searchQuery",
- "relations": {
- "self": {
- "type": "saveSearches",
- "id": "6815cc27-524e-4664-8d1c-28041e28a4d4"
}
}
}
], - "serviceAccount": "S-1-5-20",
- "speakerGroups": [
- {
- "builtIn": false,
- "description": "SpeakerGroup may have a long description",
- "displayName": "Speaker Group",
- "id": "097b561d-e5b4-4c73-be5e-8289a3df0390",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Speaker Group",
- "speakerGroups": [
- { }
], - "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": null,
- "id": null
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "relations": {
- "self": {
- "type": "speakerGroups",
- "id": "097b561d-e5b4-4c73-be5e-8289a3df0390"
}
}
}
], - "stateGroups": [
- {
- "displayName": "Live FPS",
- "id": "14a4425c-7410-48c8-b08b-f3f2c0d843ce",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Live FPS",
- "states": [
- "string"
], - "relations": {
- "self": {
- "type": "stateGroups",
- "id": "14a4425c-7410-48c8-b08b-f3f2c0d843ce"
}
}
}
], - "synchronizationStatus": 0,
- "systemAddresses": [
- {
- "addressType": "Internal",
- "relations": {
- "self": {
- "type": "systemAddresses",
- "id": "99b5bd81-ffbe-456d-b9d6-877e605440ea"
}
}
}
], - "timeProfiles": [
- {
- "description": "TimeProfile may have a long description",
- "displayName": "Day Length Time Profile",
- "id": "da463d61-0d95-42a7-a063-918387743029",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Day Length Time Profile",
- "sunclockGPSCoordinate": "N55 00 E08 50",
- "sunclockSunRise": 0,
- "sunclockSunSet": 0,
- "sunclockTimeZone": "Romance Standard Time",
- "timeProfileType": "Sunclock",
- "timeProfileAppointmentRecur": [
- {
- "allDayEvent": false,
- "appointmentRootId": "450f9a4c-273b-47f0-aea5-b7b36b46a5a0",
- "displayName": "My recurring appointment",
- "endDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "recurrenceDescription": "Occurs every day effective 8/19/2024 until 8/19/2124 from 10:54 AM to 11:54 AM.",
- "recurrenceOccurrenceDuration": "01:00:00",
- "recurrenceOccurrenceStartTime": "10:54:01",
- "recurrencePatternDayOfMonth": 23,
- "recurrencePatternDaysOfWeek": 127,
- "recurrencePatternFrequency": "Daily",
- "recurrencePatternInterval": 1,
- "recurrencePatternMonthOfYear": 9,
- "recurrencePatternOccurrenceOfDayInMonth": "Fourth",
- "recurrencePatternType": "Calculated",
- "recurrenceRangeEndDate": "2022-05-23T09:24:58.9130000+02:00",
- "recurrenceRangeLimit": "LimitByDate",
- "recurrenceRangeMaxOccurrences": 10,
- "recurrenceRangeStartDate": "2022-05-23T09:24:58.9130000+02:00",
- "startDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "subject": "My recurring appointment"
}
], - "timeProfileAppointmentRoot": [
- {
- "allDayEvent": false,
- "displayName": "My appointment",
- "endDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "originalStartDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "startDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "subject": "My appointment"
}
], - "relations": {
- "self": {
- "type": "timeProfiles",
- "id": "da463d61-0d95-42a7-a063-918387743029"
}
}
}
], - "timeZone": "Romance Standard Time",
- "toolOptions": [
- {
- "deviceErrorTimeoutSec": "0",
- "displayName": "Recording Server options",
- "pausePatrollingTimeoutSec": 600,
- "ptzManualSessionTimeoutSec": 15,
- "ptzReservedSessionTimeoutSec": 3600,
- "ptzUseDefaultPresetAsPtzHome": false,
- "relations": {
- "self": {
- "type": "toolOptions",
- "id": "ec9c3acc-518e-4cfd-931b-7ee69925b82c"
}
}
}
], - "userDefinedEvents": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "displayName": "Event Low",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Event Low",
- "subtype": "UserDefined",
- "relations": {
- "self": {
- "type": "userDefinedEvents",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1"
}
}
}
], - "version": "24.2.0.1",
- "videoWalls": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "VideoWall may have a long description",
- "displayName": "My wall",
- "height": 200,
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "monitors": [
- {
- "aspectRatio": "Aspect4x3",
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Monitor may have a long description",
- "displayName": "Front desk monitor",
- "emptyViewItems": "Preserve",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f",
- "insertionMethod": "Linked",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "locationX": 0,
- "locationY": 0,
- "monitorPresets": [
- {
- "definitionXml": "<view viewlayouttype=\\\"VideoOS.RemoteClient.Application.Data.ViewLayouts.ViewLayout5x5, VideoOS.RemoteClient.Application\\\" shortcut=\\\"\\\" displayname=\\\"Night\\\" id=\\\"f1e9dcfd-7353-4d26-9475-22800c41d796\\\"><viewitems><viewitem id=\\\"d1001d9e-2b18-46b0-a94e-e354cd50a26c\\\" shortcut=\\\"\\\" displayname=\\\"LPR camera\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\"><iteminfo lastknowncameradisplayname=\\\"LPR camera\\\" cameraid=\\\"16482501-1319-440f-967b-0fc076ba7667\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" ipixsplitmode=\\\"0\\\" keepimagequalitywhenmaximized=\\\"False\\\" maintainimageaspectratio=\\\"True\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" /><properties /></viewitem><viewitem id=\\\"e1473120-02ed-449f-bda6-9497568ce546\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"69199daa-86a7-4635-bc6f-cbc51fe558c6\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"546ba8b8-9482-44e4-abcc-b1d0dc14c155\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"ec210df8-c22a-434e-86e2-b725e76559df\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"95a39cf2-f405-4f67-8a55-72b0c0f5f38a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a68489af-6a9f-46e2-8634-05e1f41e111d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"7d66ee08-dba7-4517-b2b5-f9209d9b24c4\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"198cfe1d-7431-49e0-92ec-c1e86b56a007\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"c697cc7c-a9be-4de8-a921-02e7d7eb2d35\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"b9afb702-ac3d-4e2a-9eed-670db1163c43\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"711bcf13-b31b-42be-8079-f53c3ca278de\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2fbd75f7-7a1a-4bd0-a670-b13d9a8a9773\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"1442394e-9d1e-49d6-b00c-5bae1612ba5a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"928d5bdd-65c2-4d36-9970-34798bcaca4b\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"78ad23d0-81ca-4ebb-90d0-a0769b4684c1\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a662932e-0ee5-4c39-93f0-eb19f481cbad\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"8ee8af16-6408-4319-bb29-6999e7b8c588\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2004163d-5499-47b7-a0e0-873d1e16c92d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"820ebb51-3112-42d5-9ef8-9902052b0cab\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"07010b7c-758e-4ac0-9f01-0451429700d5\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"27dc28f4-e89e-44c2-a7cc-d4b08cf0c727\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"72131cb8-4e56-459c-863f-549bb17dad07\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"0086d81b-1e3c-4cc5-8c24-86f32768dd0a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"f55568ff-7158-418a-a56e-80e437cdf875\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem></viewitems><properties><property value=\\\"<ViewLayout><Icon>iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOwgAADsIBFShKgAAAAPFJREFUOE+l0DELRWAUBuDvl0oZlEEZlCSr8iOUkkkSyeQHmGQim4x263udU4QM97qnHtf3Or1XBIC/PIa/EI7j4C0usG0bb3GBZVnYNU1DIU9VVUfu+z7Wdb1kZBshTNPEbhxHuK4Lz/O4hO4pn+cZXdehLMtjl3CBYRi4o9ejf6Tfuq5RFMXhvMcFuq7jbhgG5HmOIAjQti1ndCbnPS7QNA1nfd8jyzK+X5aFli4Tx/Gxu40QqqqC0CtN04Qoivh8l6YpO2dcoCgKSBiGFFyGvvT+PEkStp/JNkLIsoy3uECSJLzFBXT5x2P4i8fwexAfaTG5M3dgCiwAAAAASUVORK5CYII=</Icon><ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem></ViewItems></ViewLayout>\\\" name=\\\"LayoutPropperty\\\" /></properties></view>",
- "displayName": "Night",
- "id": "23b6c495-5fbd-4f4e-9a44-23d3e55f7adc",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Night",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "monitorSize": 20,
- "monitorState": "string",
- "name": "Front desk monitor",
- "noLayout": "Preserve",
- "view": {
- "type": "views",
- "id": "01c5dada-2530-439c-9a2f-08af5dd45813"
}, - "relations": {
- "self": {
- "type": "monitors",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f"
}, - "parent": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
], - "name": "My wall",
- "statusText": true,
- "titleBar": "None",
- "videoWallPresets": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "VideoWallPreset may have a long description",
- "displayName": "Night",
- "id": "3cc421f4-f20e-4254-a472-425ded951bc4",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Night",
- "relations": {
- "self": {
- "type": "videoWallPresets",
- "id": "3cc421f4-f20e-4254-a472-425ded951bc4"
}, - "parent": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
], - "width": 200,
- "relations": {
- "self": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
], - "viewGroups": [
- {
- "description": "ViewGroup may have a long description",
- "displayName": "Basic User Group",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Basic User Group",
- "viewGroupDataXml": "string",
- "viewGroups": [
- { }
], - "views": [
- {
- "displayName": "2x1 Audio",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "layoutCustomId": "string",
- "layoutIcon": "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",
- "layoutViewItems": "<ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem><ViewItem><Position><X>500</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem></ViewItems>",
- "name": "2x1 Audio",
- "shortcut": "string",
- "viewLayoutType": "string",
- "viewItem": [
- {
- "displayName": "Index 0",
- "viewItemDefinitionXml": "<viewitem id=\\\"f11ff2f9-6e20-4e50-8528-e6b27b4f9a0b\\\" displayname=\\\"Camera ViewItem\\\" shortcut=\\\"\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\" smartClientId=\\\"8B1A85EF-9A4E-4CD8-9214-85EA148676BD\\\"><iteminfo cameraid=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" lastknowncameradisplayname=\\\"Mini Sequencer camera\\\" livestreamid=\\\"00000000-0000-0000-0000-000000000000\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" maintainimageaspectratio=\\\"True\\\" usedefaultdisplaysettings=\\\"True\\\" showtitlebar=\\\"True\\\" keepimagequalitywhenmaximized=\\\"False\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" pointandclickmode=\\\"0\\\" usingproperties=\\\"True\\\" /><properties><property name=\\\"cameraid\\\" value=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" /><property name=\\\"framerate\\\" value=\\\"0\\\" /><property name=\\\"imagequality\\\" value=\\\"100\\\" /><property name=\\\"lastknowncameradisplayname\\\" value=\\\"Mini Sequencer camera\\\" /></properties></viewitem>",
- "viewItemPosition": 0
}
], - "relations": {
- "self": {
- "type": "views",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208"
}, - "parent": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}
], - "relations": {
- "self": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}
], - "relations": {
- "self": {
- "type": "sites",
- "id": "00645af0-db75-40c2-82cc-2ad2e820aca9"
}
}
}
}
{- "array": [
- {
- "addressType": "Internal",
- "relations": {
- "self": {
- "type": "systemAddresses",
- "id": "99b5bd81-ffbe-456d-b9d6-877e605440ea"
}
}
}
]
}
{- "array": [
- {
- "deviceErrorTimeoutSec": "0",
- "displayName": "Recording Server options",
- "pausePatrollingTimeoutSec": 600,
- "ptzManualSessionTimeoutSec": 15,
- "ptzReservedSessionTimeoutSec": 3600,
- "ptzUseDefaultPresetAsPtzHome": false,
- "relations": {
- "self": {
- "type": "toolOptions",
- "id": "ec9c3acc-518e-4cfd-931b-7ee69925b82c"
}
}
}
]
}
System options
id required | string <guid> Example: ec9c3acc-518e-4cfd-931b-7ee69925b82c Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "deviceErrorTimeoutSec": "0",
- "displayName": "Recording Server options",
- "pausePatrollingTimeoutSec": 600,
- "ptzManualSessionTimeoutSec": 15,
- "ptzReservedSessionTimeoutSec": 3600,
- "ptzUseDefaultPresetAsPtzHome": false,
- "relations": {
- "self": {
- "type": "toolOptions",
- "id": "ec9c3acc-518e-4cfd-931b-7ee69925b82c"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
System options
id required | string <guid> Example: ec9c3acc-518e-4cfd-931b-7ee69925b82c Id of the object |
deviceErrorTimeoutSec | string Enum: "0" "5" "10" "15" "30" "45" "60" "120" "300" Ignore device communication errors for. The number of seconds to pass before logging a device communication error. Legal values are 0,1,5,10,15,30,45,60,120,300.
Value map to display names:
0=0 |
pausePatrollingTimeoutSec | integer Timeout for pause patrolling sessions (sec). A value in seconds. Value need to be in hours: e.g. multiple of 3600, or in minutes: multiple of 60, or in seconds: with max value of 999 |
ptzManualSessionTimeoutSec | integer Timeout for manual PTZ sessions (sec). A value in seconds. Value need to be in hours: e.g. multiple of 3600, or in minutes: multiple of 60, or in seconds: with max value of 999 |
ptzReservedSessionTimeoutSec | integer Timeout for reserved PTZ sessions (sec). A value in seconds. Value need to be in hours: e.g. multiple of 3600, or in minutes: multiple of 60, or in seconds: with max value of 999 |
ptzUseDefaultPresetAsPtzHome | boolean Use default preset as PTZ home position. |
object |
{- "deviceErrorTimeoutSec": "0",
- "pausePatrollingTimeoutSec": 600,
- "ptzManualSessionTimeoutSec": 15,
- "ptzReservedSessionTimeoutSec": 3600,
- "ptzUseDefaultPresetAsPtzHome": false,
- "relations": {
- "self": {
- "type": "toolOptions",
- "id": "ec9c3acc-518e-4cfd-931b-7ee69925b82c"
}
}
}
{- "data": {
- "deviceErrorTimeoutSec": "0",
- "displayName": "Recording Server options",
- "pausePatrollingTimeoutSec": 600,
- "ptzManualSessionTimeoutSec": 15,
- "ptzReservedSessionTimeoutSec": 3600,
- "ptzUseDefaultPresetAsPtzHome": false,
- "relations": {
- "self": {
- "type": "toolOptions",
- "id": "ec9c3acc-518e-4cfd-931b-7ee69925b82c"
}
}
}
}
System options
id required | string <guid> Example: ec9c3acc-518e-4cfd-931b-7ee69925b82c Id of the object |
deviceErrorTimeoutSec | string Enum: "0" "5" "10" "15" "30" "45" "60" "120" "300" Ignore device communication errors for. The number of seconds to pass before logging a device communication error. Legal values are 0,1,5,10,15,30,45,60,120,300.
Value map to display names:
0=0 |
pausePatrollingTimeoutSec | integer Timeout for pause patrolling sessions (sec). A value in seconds. Value need to be in hours: e.g. multiple of 3600, or in minutes: multiple of 60, or in seconds: with max value of 999 |
ptzManualSessionTimeoutSec | integer Timeout for manual PTZ sessions (sec). A value in seconds. Value need to be in hours: e.g. multiple of 3600, or in minutes: multiple of 60, or in seconds: with max value of 999 |
ptzReservedSessionTimeoutSec | integer Timeout for reserved PTZ sessions (sec). A value in seconds. Value need to be in hours: e.g. multiple of 3600, or in minutes: multiple of 60, or in seconds: with max value of 999 |
ptzUseDefaultPresetAsPtzHome | boolean Use default preset as PTZ home position. |
object |
{- "deviceErrorTimeoutSec": "0",
- "pausePatrollingTimeoutSec": 600,
- "ptzManualSessionTimeoutSec": 15,
- "ptzReservedSessionTimeoutSec": 3600,
- "ptzUseDefaultPresetAsPtzHome": false,
- "relations": {
- "self": {
- "type": "toolOptions",
- "id": "ec9c3acc-518e-4cfd-931b-7ee69925b82c"
}
}
}
{- "data": {
- "deviceErrorTimeoutSec": "0",
- "displayName": "Recording Server options",
- "pausePatrollingTimeoutSec": 600,
- "ptzManualSessionTimeoutSec": 15,
- "ptzReservedSessionTimeoutSec": 3600,
- "ptzUseDefaultPresetAsPtzHome": false,
- "relations": {
- "self": {
- "type": "toolOptions",
- "id": "ec9c3acc-518e-4cfd-931b-7ee69925b82c"
}
}
}
}
Tasks
id required | string <guid> Example: d6ae0f81-b855-4f7a-b6c5-fb35e1d56ea5 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "result": {
- "progress": "25",
- "errorCode": "61002",
- "errorText": "Something went wrong",
- "state": "Error",
- "path": "hardware/F29FEF78-E5EA-4DCF-B654-8F76886DD873"
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Get list of all translations for one language
language required | string Example: language=language=en-us Select what language to translate to, e.g. en-us |
{- "array": [
- {
- "id": "2f8b6325-9c48-44b9-9868-27db64a71d51",
- "text": "MPEG-4 frames per second"
}
]
}
Delete own service registration. Built-in services cannot be deleted.
id required | string <uuid> Instance id of an existing service registration |
{- "data": {
- "name": "string",
- "description": "string",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "enabled": true,
- "serviceType": "5098a352-b74c-4e8f-8c3e-d0dafa6908d3",
- "customData": "string",
- "uris": [
- "string"
], - "endpoints": [
- {
- "uri": "string",
- "authentication": "string",
- "name": "string",
- "description": "string"
}
]
}
}
Update provided fields in an existing service registration. Can be used to, for example, enable and disable services in case multiple services of the same type is installed.
id required | string <uuid> Instance id of an existing service registration |
enabled | boolean Defines if the services is enabled, e.g. operational |
customData | string Can be any data the integration like to store with the service |
collectorId | integer Internal VMS use |
uris | Array of strings Array of valid URIs - multiple URIs are provided when multiple network adaptors are installed on the server or when internal and external addresses are configured for the management server |
{- "enabled": true,
- "customData": "string",
- "collectorId": 0,
- "uris": [
- "string"
]
}
{- "httpCode": "400",
- "details": [
- {
- "errorText": "Bad Request - FPS out of range",
- "property": "FPS",
- "errorTextId": "BadFPSTextId"
}
]
}
Returns the registered service identified by the id.
id required | string <uuid> Instance id of a current registered service |
{- "data": {
- "name": "string",
- "description": "string",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "enabled": true,
- "serviceType": "5098a352-b74c-4e8f-8c3e-d0dafa6908d3",
- "customData": "string",
- "uris": [
- "string"
], - "endpoints": [
- {
- "uri": "string",
- "authentication": "string",
- "name": "string",
- "description": "string"
}
]
}
}
Returns a list of all registered services. When adding "includeDisabled" as a parameter, all the disabled services are also returned. /registeredServices?includeDisabled
{- "array": [
- {
- "name": "string",
- "description": "string",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "enabled": true,
- "serviceType": "5098a352-b74c-4e8f-8c3e-d0dafa6908d3",
- "customData": "string",
- "uris": [
- "string"
], - "endpoints": [
- {
- "uri": "string",
- "authentication": "string",
- "name": "string",
- "description": "string"
}
]
}
]
}
Register own service on the VMS server. Can be used when your integration have multiple servers involved, and want to access all servers from the different plug-ins. It is possible to specify multiple endpoints, to make it easier for the users of the registered services to construct the correct URL.
name required | string Name of service |
description required | string Description of a service |
id required | string <uuid> Instance id for the given service (different servers has different Instance Ids) |
enabled required | boolean Defines if the services is enabled, e.g. operational |
serviceType required | string <uuid> Type of service identified by a GUID |
customData | string Can be any data the integration like to store with the service |
uris required | Array of strings Array of valid URIs - multiple URIs are provided when multiple network adaptors are installed on the server or when internal and external addresses are configured for the management server |
Array of objects (endpointBody) When multiple authentication options are available, this array is used to defined each option. |
{- "name": "string",
- "description": "string",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "enabled": true,
- "serviceType": "5098a352-b74c-4e8f-8c3e-d0dafa6908d3",
- "customData": "string",
- "uris": [
- "string"
], - "endpoints": [
- {
- "uri": "string",
- "authentication": "string",
- "name": "string",
- "description": "string"
}
]
}
{- "httpCode": "400",
- "details": [
- {
- "errorText": "Bad Request - FPS out of range",
- "property": "FPS",
- "errorTextId": "BadFPSTextId"
}
]
}
{- "array": [
- {
- "builtIn": false,
- "cameraGroups": [
- { }
], - "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": "fisheyeLens",
- "id": "d0ae3832-344b-4886-a699-3a74d2465a85"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": "motionDetections",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": "privacyProtections",
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": "ptzPresets",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": true,
- "displayName": "Video stream 1",
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "description": "CameraGroup may have a long description",
- "displayName": "Direct Show",
- "id": "815ee09f-312b-489b-b541-f16d2d1fc901",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Direct Show",
- "relations": {
- "self": {
- "type": "cameraGroups",
- "id": "815ee09f-312b-489b-b541-f16d2d1fc901"
}
}
}
]
}
Camera groups
description | string Description |
name | string Name |
object |
{- "description": "CameraGroup may have a long description",
- "name": "Direct Show",
- "relations": {
- "self": {
- "type": "cameraGroups",
- "id": "815ee09f-312b-489b-b541-f16d2d1fc901"
}
}
}
{- "result": {
- "builtIn": false,
- "cameraGroups": [
- { }
], - "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": "fisheyeLens",
- "id": "d0ae3832-344b-4886-a699-3a74d2465a85"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": "motionDetections",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": "privacyProtections",
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": "ptzPresets",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": true,
- "displayName": "Video stream 1",
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "description": "CameraGroup may have a long description",
- "displayName": "Direct Show",
- "id": "815ee09f-312b-489b-b541-f16d2d1fc901",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Direct Show",
- "relations": {
- "self": {
- "type": "cameraGroups",
- "id": "815ee09f-312b-489b-b541-f16d2d1fc901"
}
}
}
}
Camera groups
id required | string <guid> Example: 815ee09f-312b-489b-b541-f16d2d1fc901 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "builtIn": false,
- "cameraGroups": [
- { }
], - "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": "fisheyeLens",
- "id": "d0ae3832-344b-4886-a699-3a74d2465a85"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": "motionDetections",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": "privacyProtections",
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": "ptzPresets",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": true,
- "displayName": "Video stream 1",
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "description": "CameraGroup may have a long description",
- "displayName": "Direct Show",
- "id": "815ee09f-312b-489b-b541-f16d2d1fc901",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Direct Show",
- "relations": {
- "self": {
- "type": "cameraGroups",
- "id": "815ee09f-312b-489b-b541-f16d2d1fc901"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Camera groups
id required | string <guid> Example: 815ee09f-312b-489b-b541-f16d2d1fc901 Id of the object |
description | string Description |
name | string Name |
object |
{- "description": "CameraGroup may have a long description",
- "name": "Direct Show",
- "relations": {
- "self": {
- "type": "cameraGroups",
- "id": "815ee09f-312b-489b-b541-f16d2d1fc901"
}
}
}
{- "data": {
- "builtIn": false,
- "cameraGroups": [
- { }
], - "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": "fisheyeLens",
- "id": "d0ae3832-344b-4886-a699-3a74d2465a85"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": "motionDetections",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": "privacyProtections",
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": "ptzPresets",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": true,
- "displayName": "Video stream 1",
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "description": "CameraGroup may have a long description",
- "displayName": "Direct Show",
- "id": "815ee09f-312b-489b-b541-f16d2d1fc901",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Direct Show",
- "relations": {
- "self": {
- "type": "cameraGroups",
- "id": "815ee09f-312b-489b-b541-f16d2d1fc901"
}
}
}
}
Camera groups
id required | string <guid> Example: 815ee09f-312b-489b-b541-f16d2d1fc901 Id of the object |
description | string Description |
name | string Name |
object |
{- "description": "CameraGroup may have a long description",
- "name": "Direct Show",
- "relations": {
- "self": {
- "type": "cameraGroups",
- "id": "815ee09f-312b-489b-b541-f16d2d1fc901"
}
}
}
{- "data": {
- "builtIn": false,
- "cameraGroups": [
- { }
], - "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": "fisheyeLens",
- "id": "d0ae3832-344b-4886-a699-3a74d2465a85"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": "motionDetections",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": "privacyProtections",
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": "ptzPresets",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": true,
- "displayName": "Video stream 1",
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "description": "CameraGroup may have a long description",
- "displayName": "Direct Show",
- "id": "815ee09f-312b-489b-b541-f16d2d1fc901",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Direct Show",
- "relations": {
- "self": {
- "type": "cameraGroups",
- "id": "815ee09f-312b-489b-b541-f16d2d1fc901"
}
}
}
}
Camera groups
id required | string <guid> Example: 815ee09f-312b-489b-b541-f16d2d1fc901 Id of the cameraGroup object |
{- "array": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": "fisheyeLens",
- "id": "d0ae3832-344b-4886-a699-3a74d2465a85"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": "motionDetections",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": "privacyProtections",
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": "ptzPresets",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": true,
- "displayName": "Video stream 1",
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Camera groups
id required | string <guid> Example: 815ee09f-312b-489b-b541-f16d2d1fc901 Id of the cameraGroup object |
type | string |
id | string <guid> |
{- "type": "cameras",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
{- "state": "Success"
}
Camera groups
idParent required | string <guid> Example: 815ee09f-312b-489b-b541-f16d2d1fc901 Id of parent object |
id required | string <guid> Example: 815ee09f-312b-489b-b541-f16d2d1fc901 Id of the object |
{- "array": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": "fisheyeLens",
- "id": "d0ae3832-344b-4886-a699-3a74d2465a85"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": "motionDetections",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": "privacyProtections",
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": "ptzPresets",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": true,
- "displayName": "Video stream 1",
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Camera groups
idParent required | string <guid> Example: 815ee09f-312b-489b-b541-f16d2d1fc901 Id of parent object |
id required | string <guid> Example: 815ee09f-312b-489b-b541-f16d2d1fc901 Id of the object |
{- "state": "Success"
}
Camera groups
id required | string <guid> Example: 815ee09f-312b-489b-b541-f16d2d1fc901 Id of the cameraGroup object |
{- "array": [
- {
- "builtIn": false,
- "cameraGroups": [
- { }
], - "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": "fisheyeLens",
- "id": "d0ae3832-344b-4886-a699-3a74d2465a85"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": "motionDetections",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": "privacyProtections",
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": "ptzPresets",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": true,
- "displayName": "Video stream 1",
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "description": "CameraGroup may have a long description",
- "displayName": "Direct Show",
- "id": "815ee09f-312b-489b-b541-f16d2d1fc901",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Direct Show",
- "relations": {
- "self": {
- "type": "cameraGroups",
- "id": "815ee09f-312b-489b-b541-f16d2d1fc901"
}
}
}
]
}
{- "array": [
- {
- "builtIn": false,
- "description": "InputEventGroup may have a long description",
- "displayName": "Input Group 1",
- "id": "3f28850e-21be-45e1-bf27-607d8b930c75",
- "inputEventGroups": [
- { }
], - "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Input Group 1",
- "relations": {
- "self": {
- "type": "inputEventGroups",
- "id": "3f28850e-21be-45e1-bf27-607d8b930c75"
}
}
}
]
}
Input groups
description | string Description |
name | string Name |
object |
{- "description": "InputEventGroup may have a long description",
- "name": "Input Group 1",
- "relations": {
- "self": {
- "type": "inputEventGroups",
- "id": "3f28850e-21be-45e1-bf27-607d8b930c75"
}
}
}
{- "result": {
- "builtIn": false,
- "description": "InputEventGroup may have a long description",
- "displayName": "Input Group 1",
- "id": "3f28850e-21be-45e1-bf27-607d8b930c75",
- "inputEventGroups": [
- { }
], - "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Input Group 1",
- "relations": {
- "self": {
- "type": "inputEventGroups",
- "id": "3f28850e-21be-45e1-bf27-607d8b930c75"
}
}
}
}
Input groups
id required | string <guid> Example: 3f28850e-21be-45e1-bf27-607d8b930c75 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "builtIn": false,
- "description": "InputEventGroup may have a long description",
- "displayName": "Input Group 1",
- "id": "3f28850e-21be-45e1-bf27-607d8b930c75",
- "inputEventGroups": [
- { }
], - "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Input Group 1",
- "relations": {
- "self": {
- "type": "inputEventGroups",
- "id": "3f28850e-21be-45e1-bf27-607d8b930c75"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Input groups
id required | string <guid> Example: 3f28850e-21be-45e1-bf27-607d8b930c75 Id of the object |
description | string Description |
name | string Name |
object |
{- "description": "InputEventGroup may have a long description",
- "name": "Input Group 1",
- "relations": {
- "self": {
- "type": "inputEventGroups",
- "id": "3f28850e-21be-45e1-bf27-607d8b930c75"
}
}
}
{- "data": {
- "builtIn": false,
- "description": "InputEventGroup may have a long description",
- "displayName": "Input Group 1",
- "id": "3f28850e-21be-45e1-bf27-607d8b930c75",
- "inputEventGroups": [
- { }
], - "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Input Group 1",
- "relations": {
- "self": {
- "type": "inputEventGroups",
- "id": "3f28850e-21be-45e1-bf27-607d8b930c75"
}
}
}
}
Input groups
id required | string <guid> Example: 3f28850e-21be-45e1-bf27-607d8b930c75 Id of the object |
description | string Description |
name | string Name |
object |
{- "description": "InputEventGroup may have a long description",
- "name": "Input Group 1",
- "relations": {
- "self": {
- "type": "inputEventGroups",
- "id": "3f28850e-21be-45e1-bf27-607d8b930c75"
}
}
}
{- "data": {
- "builtIn": false,
- "description": "InputEventGroup may have a long description",
- "displayName": "Input Group 1",
- "id": "3f28850e-21be-45e1-bf27-607d8b930c75",
- "inputEventGroups": [
- { }
], - "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Input Group 1",
- "relations": {
- "self": {
- "type": "inputEventGroups",
- "id": "3f28850e-21be-45e1-bf27-607d8b930c75"
}
}
}
}
Input groups
id required | string <guid> Example: 3f28850e-21be-45e1-bf27-607d8b930c75 Id of the inputEventGroup object |
{- "array": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Input groups
id required | string <guid> Example: 3f28850e-21be-45e1-bf27-607d8b930c75 Id of the inputEventGroup object |
type | string |
id | string <guid> |
{- "type": "cameras",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
{- "state": "Success"
}
Input groups
idParent required | string <guid> Example: 3f28850e-21be-45e1-bf27-607d8b930c75 Id of parent object |
id required | string <guid> Example: 3f28850e-21be-45e1-bf27-607d8b930c75 Id of the object |
{- "array": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Input groups
idParent required | string <guid> Example: 3f28850e-21be-45e1-bf27-607d8b930c75 Id of parent object |
id required | string <guid> Example: 3f28850e-21be-45e1-bf27-607d8b930c75 Id of the object |
{- "state": "Success"
}
Input groups
id required | string <guid> Example: 3f28850e-21be-45e1-bf27-607d8b930c75 Id of the inputEventGroup object |
{- "array": [
- {
- "builtIn": false,
- "description": "InputEventGroup may have a long description",
- "displayName": "Input Group 1",
- "id": "3f28850e-21be-45e1-bf27-607d8b930c75",
- "inputEventGroups": [
- { }
], - "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Input Group 1",
- "relations": {
- "self": {
- "type": "inputEventGroups",
- "id": "3f28850e-21be-45e1-bf27-607d8b930c75"
}
}
}
]
}
{- "array": [
- {
- "builtIn": false,
- "description": "MetadataGroup may have a long description",
- "displayName": "Metadata Group 1",
- "id": "b37f4500-1dd1-4995-bafa-baf09c9f64ec",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "metadataGroups": [
- { }
], - "name": "Metadata Group 1",
- "relations": {
- "self": {
- "type": "metadataGroups",
- "id": "b37f4500-1dd1-4995-bafa-baf09c9f64ec"
}
}
}
]
}
Metadata groups
description | string Description |
name | string Name |
object |
{- "description": "MetadataGroup may have a long description",
- "name": "Metadata Group 1",
- "relations": {
- "self": {
- "type": "metadataGroups",
- "id": "b37f4500-1dd1-4995-bafa-baf09c9f64ec"
}
}
}
{- "result": {
- "builtIn": false,
- "description": "MetadataGroup may have a long description",
- "displayName": "Metadata Group 1",
- "id": "b37f4500-1dd1-4995-bafa-baf09c9f64ec",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "metadataGroups": [
- { }
], - "name": "Metadata Group 1",
- "relations": {
- "self": {
- "type": "metadataGroups",
- "id": "b37f4500-1dd1-4995-bafa-baf09c9f64ec"
}
}
}
}
Metadata groups
id required | string <guid> Example: b37f4500-1dd1-4995-bafa-baf09c9f64ec Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "builtIn": false,
- "description": "MetadataGroup may have a long description",
- "displayName": "Metadata Group 1",
- "id": "b37f4500-1dd1-4995-bafa-baf09c9f64ec",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "metadataGroups": [
- { }
], - "name": "Metadata Group 1",
- "relations": {
- "self": {
- "type": "metadataGroups",
- "id": "b37f4500-1dd1-4995-bafa-baf09c9f64ec"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Metadata groups
id required | string <guid> Example: b37f4500-1dd1-4995-bafa-baf09c9f64ec Id of the object |
description | string Description |
name | string Name |
object |
{- "description": "MetadataGroup may have a long description",
- "name": "Metadata Group 1",
- "relations": {
- "self": {
- "type": "metadataGroups",
- "id": "b37f4500-1dd1-4995-bafa-baf09c9f64ec"
}
}
}
{- "data": {
- "builtIn": false,
- "description": "MetadataGroup may have a long description",
- "displayName": "Metadata Group 1",
- "id": "b37f4500-1dd1-4995-bafa-baf09c9f64ec",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "metadataGroups": [
- { }
], - "name": "Metadata Group 1",
- "relations": {
- "self": {
- "type": "metadataGroups",
- "id": "b37f4500-1dd1-4995-bafa-baf09c9f64ec"
}
}
}
}
Metadata groups
id required | string <guid> Example: b37f4500-1dd1-4995-bafa-baf09c9f64ec Id of the object |
description | string Description |
name | string Name |
object |
{- "description": "MetadataGroup may have a long description",
- "name": "Metadata Group 1",
- "relations": {
- "self": {
- "type": "metadataGroups",
- "id": "b37f4500-1dd1-4995-bafa-baf09c9f64ec"
}
}
}
{- "data": {
- "builtIn": false,
- "description": "MetadataGroup may have a long description",
- "displayName": "Metadata Group 1",
- "id": "b37f4500-1dd1-4995-bafa-baf09c9f64ec",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "metadataGroups": [
- { }
], - "name": "Metadata Group 1",
- "relations": {
- "self": {
- "type": "metadataGroups",
- "id": "b37f4500-1dd1-4995-bafa-baf09c9f64ec"
}
}
}
}
Metadata groups
id required | string <guid> Example: b37f4500-1dd1-4995-bafa-baf09c9f64ec Id of the metadataGroup object |
{- "array": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Metadata groups
id required | string <guid> Example: b37f4500-1dd1-4995-bafa-baf09c9f64ec Id of the metadataGroup object |
type | string |
id | string <guid> |
{- "type": "cameras",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
{- "state": "Success"
}
Metadata groups
idParent required | string <guid> Example: b37f4500-1dd1-4995-bafa-baf09c9f64ec Id of parent object |
id required | string <guid> Example: b37f4500-1dd1-4995-bafa-baf09c9f64ec Id of the object |
{- "array": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Metadata groups
idParent required | string <guid> Example: b37f4500-1dd1-4995-bafa-baf09c9f64ec Id of parent object |
id required | string <guid> Example: b37f4500-1dd1-4995-bafa-baf09c9f64ec Id of the object |
{- "state": "Success"
}
Metadata groups
id required | string <guid> Example: b37f4500-1dd1-4995-bafa-baf09c9f64ec Id of the metadataGroup object |
{- "array": [
- {
- "builtIn": false,
- "description": "MetadataGroup may have a long description",
- "displayName": "Metadata Group 1",
- "id": "b37f4500-1dd1-4995-bafa-baf09c9f64ec",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "metadataGroups": [
- { }
], - "name": "Metadata Group 1",
- "relations": {
- "self": {
- "type": "metadataGroups",
- "id": "b37f4500-1dd1-4995-bafa-baf09c9f64ec"
}
}
}
]
}
{- "array": [
- {
- "builtIn": false,
- "description": "MicrophoneGroup may have a long description",
- "displayName": "Microphone Group",
- "id": "db393d9d-3008-4307-8e41-408dd7f920d5",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "microphoneGroups": [
- { }
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "name": "Microphone Group",
- "relations": {
- "self": {
- "type": "microphoneGroups",
- "id": "db393d9d-3008-4307-8e41-408dd7f920d5"
}
}
}
]
}
Microphone groups
description | string Description |
name | string Name |
object |
{- "description": "MicrophoneGroup may have a long description",
- "name": "Microphone Group",
- "relations": {
- "self": {
- "type": "microphoneGroups",
- "id": "db393d9d-3008-4307-8e41-408dd7f920d5"
}
}
}
{- "result": {
- "builtIn": false,
- "description": "MicrophoneGroup may have a long description",
- "displayName": "Microphone Group",
- "id": "db393d9d-3008-4307-8e41-408dd7f920d5",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "microphoneGroups": [
- { }
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "name": "Microphone Group",
- "relations": {
- "self": {
- "type": "microphoneGroups",
- "id": "db393d9d-3008-4307-8e41-408dd7f920d5"
}
}
}
}
Microphone groups
id required | string <guid> Example: db393d9d-3008-4307-8e41-408dd7f920d5 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "builtIn": false,
- "description": "MicrophoneGroup may have a long description",
- "displayName": "Microphone Group",
- "id": "db393d9d-3008-4307-8e41-408dd7f920d5",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "microphoneGroups": [
- { }
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "name": "Microphone Group",
- "relations": {
- "self": {
- "type": "microphoneGroups",
- "id": "db393d9d-3008-4307-8e41-408dd7f920d5"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Microphone groups
id required | string <guid> Example: db393d9d-3008-4307-8e41-408dd7f920d5 Id of the object |
description | string Description |
name | string Name |
object |
{- "description": "MicrophoneGroup may have a long description",
- "name": "Microphone Group",
- "relations": {
- "self": {
- "type": "microphoneGroups",
- "id": "db393d9d-3008-4307-8e41-408dd7f920d5"
}
}
}
{- "data": {
- "builtIn": false,
- "description": "MicrophoneGroup may have a long description",
- "displayName": "Microphone Group",
- "id": "db393d9d-3008-4307-8e41-408dd7f920d5",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "microphoneGroups": [
- { }
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "name": "Microphone Group",
- "relations": {
- "self": {
- "type": "microphoneGroups",
- "id": "db393d9d-3008-4307-8e41-408dd7f920d5"
}
}
}
}
Microphone groups
id required | string <guid> Example: db393d9d-3008-4307-8e41-408dd7f920d5 Id of the object |
description | string Description |
name | string Name |
object |
{- "description": "MicrophoneGroup may have a long description",
- "name": "Microphone Group",
- "relations": {
- "self": {
- "type": "microphoneGroups",
- "id": "db393d9d-3008-4307-8e41-408dd7f920d5"
}
}
}
{- "data": {
- "builtIn": false,
- "description": "MicrophoneGroup may have a long description",
- "displayName": "Microphone Group",
- "id": "db393d9d-3008-4307-8e41-408dd7f920d5",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "microphoneGroups": [
- { }
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "name": "Microphone Group",
- "relations": {
- "self": {
- "type": "microphoneGroups",
- "id": "db393d9d-3008-4307-8e41-408dd7f920d5"
}
}
}
}
Microphone groups
id required | string <guid> Example: db393d9d-3008-4307-8e41-408dd7f920d5 Id of the microphoneGroup object |
{- "array": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Microphone groups
id required | string <guid> Example: db393d9d-3008-4307-8e41-408dd7f920d5 Id of the microphoneGroup object |
type | string |
id | string <guid> |
{- "type": "cameras",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
{- "state": "Success"
}
Microphone groups
idParent required | string <guid> Example: db393d9d-3008-4307-8e41-408dd7f920d5 Id of parent object |
id required | string <guid> Example: db393d9d-3008-4307-8e41-408dd7f920d5 Id of the object |
{- "array": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Microphone groups
idParent required | string <guid> Example: db393d9d-3008-4307-8e41-408dd7f920d5 Id of parent object |
id required | string <guid> Example: db393d9d-3008-4307-8e41-408dd7f920d5 Id of the object |
{- "state": "Success"
}
Microphone groups
id required | string <guid> Example: db393d9d-3008-4307-8e41-408dd7f920d5 Id of the microphoneGroup object |
{- "array": [
- {
- "builtIn": false,
- "description": "MicrophoneGroup may have a long description",
- "displayName": "Microphone Group",
- "id": "db393d9d-3008-4307-8e41-408dd7f920d5",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "microphoneGroups": [
- { }
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "name": "Microphone Group",
- "relations": {
- "self": {
- "type": "microphoneGroups",
- "id": "db393d9d-3008-4307-8e41-408dd7f920d5"
}
}
}
]
}
{- "array": [
- {
- "builtIn": false,
- "description": "OutputGroup may have a long description",
- "displayName": "Test Driver Camera 1",
- "id": "806ebe93-aa00-4476-99ea-9e44418a7acd",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Camera 1",
- "outputGroups": [
- { }
], - "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "relations": {
- "self": {
- "type": "outputGroups",
- "id": "806ebe93-aa00-4476-99ea-9e44418a7acd"
}
}
}
]
}
Output groups
description | string Description |
name | string Name |
object |
{- "description": "OutputGroup may have a long description",
- "name": "Test Driver Camera 1",
- "relations": {
- "self": {
- "type": "outputGroups",
- "id": "806ebe93-aa00-4476-99ea-9e44418a7acd"
}
}
}
{- "result": {
- "builtIn": false,
- "description": "OutputGroup may have a long description",
- "displayName": "Test Driver Camera 1",
- "id": "806ebe93-aa00-4476-99ea-9e44418a7acd",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Camera 1",
- "outputGroups": [
- { }
], - "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "relations": {
- "self": {
- "type": "outputGroups",
- "id": "806ebe93-aa00-4476-99ea-9e44418a7acd"
}
}
}
}
Output groups
id required | string <guid> Example: 806ebe93-aa00-4476-99ea-9e44418a7acd Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "builtIn": false,
- "description": "OutputGroup may have a long description",
- "displayName": "Test Driver Camera 1",
- "id": "806ebe93-aa00-4476-99ea-9e44418a7acd",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Camera 1",
- "outputGroups": [
- { }
], - "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "relations": {
- "self": {
- "type": "outputGroups",
- "id": "806ebe93-aa00-4476-99ea-9e44418a7acd"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Output groups
id required | string <guid> Example: 806ebe93-aa00-4476-99ea-9e44418a7acd Id of the object |
description | string Description |
name | string Name |
object |
{- "description": "OutputGroup may have a long description",
- "name": "Test Driver Camera 1",
- "relations": {
- "self": {
- "type": "outputGroups",
- "id": "806ebe93-aa00-4476-99ea-9e44418a7acd"
}
}
}
{- "data": {
- "builtIn": false,
- "description": "OutputGroup may have a long description",
- "displayName": "Test Driver Camera 1",
- "id": "806ebe93-aa00-4476-99ea-9e44418a7acd",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Camera 1",
- "outputGroups": [
- { }
], - "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "relations": {
- "self": {
- "type": "outputGroups",
- "id": "806ebe93-aa00-4476-99ea-9e44418a7acd"
}
}
}
}
Output groups
id required | string <guid> Example: 806ebe93-aa00-4476-99ea-9e44418a7acd Id of the object |
description | string Description |
name | string Name |
object |
{- "description": "OutputGroup may have a long description",
- "name": "Test Driver Camera 1",
- "relations": {
- "self": {
- "type": "outputGroups",
- "id": "806ebe93-aa00-4476-99ea-9e44418a7acd"
}
}
}
{- "data": {
- "builtIn": false,
- "description": "OutputGroup may have a long description",
- "displayName": "Test Driver Camera 1",
- "id": "806ebe93-aa00-4476-99ea-9e44418a7acd",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Camera 1",
- "outputGroups": [
- { }
], - "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "relations": {
- "self": {
- "type": "outputGroups",
- "id": "806ebe93-aa00-4476-99ea-9e44418a7acd"
}
}
}
}
Output groups
id required | string <guid> Example: 806ebe93-aa00-4476-99ea-9e44418a7acd Id of the outputGroup object |
{- "array": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Output groups
id required | string <guid> Example: 806ebe93-aa00-4476-99ea-9e44418a7acd Id of the outputGroup object |
type | string |
id | string <guid> |
{- "type": "cameras",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
{- "state": "Success"
}
Output groups
idParent required | string <guid> Example: 806ebe93-aa00-4476-99ea-9e44418a7acd Id of parent object |
id required | string <guid> Example: 806ebe93-aa00-4476-99ea-9e44418a7acd Id of the object |
{- "array": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Output groups
idParent required | string <guid> Example: 806ebe93-aa00-4476-99ea-9e44418a7acd Id of parent object |
id required | string <guid> Example: 806ebe93-aa00-4476-99ea-9e44418a7acd Id of the object |
{- "state": "Success"
}
Output groups
id required | string <guid> Example: 806ebe93-aa00-4476-99ea-9e44418a7acd Id of the outputGroup object |
{- "array": [
- {
- "builtIn": false,
- "description": "OutputGroup may have a long description",
- "displayName": "Test Driver Camera 1",
- "id": "806ebe93-aa00-4476-99ea-9e44418a7acd",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Camera 1",
- "outputGroups": [
- { }
], - "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "relations": {
- "self": {
- "type": "outputGroups",
- "id": "806ebe93-aa00-4476-99ea-9e44418a7acd"
}
}
}
]
}
{- "array": [
- {
- "builtIn": false,
- "description": "SpeakerGroup may have a long description",
- "displayName": "Speaker Group",
- "id": "097b561d-e5b4-4c73-be5e-8289a3df0390",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Speaker Group",
- "speakerGroups": [
- { }
], - "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "relations": {
- "self": {
- "type": "speakerGroups",
- "id": "097b561d-e5b4-4c73-be5e-8289a3df0390"
}
}
}
]
}
Speaker groups
description | string Description |
name | string Name |
object |
{- "description": "SpeakerGroup may have a long description",
- "name": "Speaker Group",
- "relations": {
- "self": {
- "type": "speakerGroups",
- "id": "097b561d-e5b4-4c73-be5e-8289a3df0390"
}
}
}
{- "result": {
- "builtIn": false,
- "description": "SpeakerGroup may have a long description",
- "displayName": "Speaker Group",
- "id": "097b561d-e5b4-4c73-be5e-8289a3df0390",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Speaker Group",
- "speakerGroups": [
- { }
], - "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "relations": {
- "self": {
- "type": "speakerGroups",
- "id": "097b561d-e5b4-4c73-be5e-8289a3df0390"
}
}
}
}
Speaker groups
id required | string <guid> Example: 097b561d-e5b4-4c73-be5e-8289a3df0390 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "builtIn": false,
- "description": "SpeakerGroup may have a long description",
- "displayName": "Speaker Group",
- "id": "097b561d-e5b4-4c73-be5e-8289a3df0390",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Speaker Group",
- "speakerGroups": [
- { }
], - "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "relations": {
- "self": {
- "type": "speakerGroups",
- "id": "097b561d-e5b4-4c73-be5e-8289a3df0390"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Speaker groups
id required | string <guid> Example: 097b561d-e5b4-4c73-be5e-8289a3df0390 Id of the object |
description | string Description |
name | string Name |
object |
{- "description": "SpeakerGroup may have a long description",
- "name": "Speaker Group",
- "relations": {
- "self": {
- "type": "speakerGroups",
- "id": "097b561d-e5b4-4c73-be5e-8289a3df0390"
}
}
}
{- "data": {
- "builtIn": false,
- "description": "SpeakerGroup may have a long description",
- "displayName": "Speaker Group",
- "id": "097b561d-e5b4-4c73-be5e-8289a3df0390",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Speaker Group",
- "speakerGroups": [
- { }
], - "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "relations": {
- "self": {
- "type": "speakerGroups",
- "id": "097b561d-e5b4-4c73-be5e-8289a3df0390"
}
}
}
}
Speaker groups
id required | string <guid> Example: 097b561d-e5b4-4c73-be5e-8289a3df0390 Id of the object |
description | string Description |
name | string Name |
object |
{- "description": "SpeakerGroup may have a long description",
- "name": "Speaker Group",
- "relations": {
- "self": {
- "type": "speakerGroups",
- "id": "097b561d-e5b4-4c73-be5e-8289a3df0390"
}
}
}
{- "data": {
- "builtIn": false,
- "description": "SpeakerGroup may have a long description",
- "displayName": "Speaker Group",
- "id": "097b561d-e5b4-4c73-be5e-8289a3df0390",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Speaker Group",
- "speakerGroups": [
- { }
], - "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "relations": {
- "self": {
- "type": "speakerGroups",
- "id": "097b561d-e5b4-4c73-be5e-8289a3df0390"
}
}
}
}
Speaker groups
id required | string <guid> Example: 097b561d-e5b4-4c73-be5e-8289a3df0390 Id of the speakerGroup object |
{- "array": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Speaker groups
id required | string <guid> Example: 097b561d-e5b4-4c73-be5e-8289a3df0390 Id of the speakerGroup object |
type | string |
id | string <guid> |
{- "type": "cameras",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
{- "state": "Success"
}
Speaker groups
idParent required | string <guid> Example: 097b561d-e5b4-4c73-be5e-8289a3df0390 Id of parent object |
id required | string <guid> Example: 097b561d-e5b4-4c73-be5e-8289a3df0390 Id of the object |
{- "array": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Speaker groups
idParent required | string <guid> Example: 097b561d-e5b4-4c73-be5e-8289a3df0390 Id of parent object |
id required | string <guid> Example: 097b561d-e5b4-4c73-be5e-8289a3df0390 Id of the object |
{- "state": "Success"
}
Speaker groups
id required | string <guid> Example: 097b561d-e5b4-4c73-be5e-8289a3df0390 Id of the speakerGroup object |
{- "array": [
- {
- "builtIn": false,
- "description": "SpeakerGroup may have a long description",
- "displayName": "Speaker Group",
- "id": "097b561d-e5b4-4c73-be5e-8289a3df0390",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Speaker Group",
- "speakerGroups": [
- { }
], - "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "relations": {
- "self": {
- "type": "speakerGroups",
- "id": "097b561d-e5b4-4c73-be5e-8289a3df0390"
}
}
}
]
}
{- "array": [
- {
- "description": "AnalyticsEvent may have a long description",
- "displayName": "MyAnalyticsEvent",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyAnalyticsEvent",
- "sourceArray": [
- "string"
], - "relations": {
- "self": {
- "type": "analyticsEvents",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2"
}
}
}
]
}
Analytics event
description | string Description |
name | string Name |
object |
{- "description": "AnalyticsEvent may have a long description",
- "name": "MyAnalyticsEvent",
- "relations": {
- "self": {
- "type": "analyticsEvents",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2"
}
}
}
{- "result": {
- "description": "AnalyticsEvent may have a long description",
- "displayName": "MyAnalyticsEvent",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyAnalyticsEvent",
- "sourceArray": [
- "string"
], - "relations": {
- "self": {
- "type": "analyticsEvents",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2"
}
}
}
}
Analytics event
id required | string <guid> Example: a03af6dd-262b-431c-864a-e92e567248e2 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "description": "AnalyticsEvent may have a long description",
- "displayName": "MyAnalyticsEvent",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyAnalyticsEvent",
- "sourceArray": [
- "string"
], - "relations": {
- "self": {
- "type": "analyticsEvents",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Analytics event
id required | string <guid> Example: a03af6dd-262b-431c-864a-e92e567248e2 Id of the object |
description | string Description |
name | string Name |
object |
{- "description": "AnalyticsEvent may have a long description",
- "name": "MyAnalyticsEvent",
- "relations": {
- "self": {
- "type": "analyticsEvents",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2"
}
}
}
{- "data": {
- "description": "AnalyticsEvent may have a long description",
- "displayName": "MyAnalyticsEvent",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyAnalyticsEvent",
- "sourceArray": [
- "string"
], - "relations": {
- "self": {
- "type": "analyticsEvents",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2"
}
}
}
}
Analytics event
id required | string <guid> Example: a03af6dd-262b-431c-864a-e92e567248e2 Id of the object |
description | string Description |
name | string Name |
object |
{- "description": "AnalyticsEvent may have a long description",
- "name": "MyAnalyticsEvent",
- "relations": {
- "self": {
- "type": "analyticsEvents",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2"
}
}
}
{- "data": {
- "description": "AnalyticsEvent may have a long description",
- "displayName": "MyAnalyticsEvent",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyAnalyticsEvent",
- "sourceArray": [
- "string"
], - "relations": {
- "self": {
- "type": "analyticsEvents",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2"
}
}
}
}
{- "array": [
- {
- "builtIn": true,
- "counterEventID": "0ee90664-2924-42a0-a816-4129d0ecabdc",
- "description": "EventType may have a long description",
- "displayName": "Communication Stopped",
- "generatorGroupId": "string",
- "generatorGroupName": "string",
- "generatorID": "string",
- "generatorName": "string",
- "generatorSubtype": "string",
- "generatorType": "Device",
- "id": "6df795fa-2b74-48fe-9243-6c96f1104acd",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "CommunicationStopped",
- "occursGlobally": false,
- "sourceArray": [
- "string"
], - "sourceFilterArray": [
- "string"
], - "stateGroupId": "53b40c77-cf48-42a2-a432-db65ae3afc7a",
- "relations": {
- "self": {
- "type": "eventTypes",
- "id": "6df795fa-2b74-48fe-9243-6c96f1104acd"
}, - "parent": {
- "type": "eventTypeGroups",
- "id": "29101d41-f0d7-44be-8d14-5f21c57d6bf0"
}
}
}
]
}
Event Types
id required | string <guid> Example: 6df795fa-2b74-48fe-9243-6c96f1104acd Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "builtIn": true,
- "counterEventID": "0ee90664-2924-42a0-a816-4129d0ecabdc",
- "description": "EventType may have a long description",
- "displayName": "Communication Stopped",
- "generatorGroupId": "string",
- "generatorGroupName": "string",
- "generatorID": "string",
- "generatorName": "string",
- "generatorSubtype": "string",
- "generatorType": "Device",
- "id": "6df795fa-2b74-48fe-9243-6c96f1104acd",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "CommunicationStopped",
- "occursGlobally": false,
- "sourceArray": [
- "string"
], - "sourceFilterArray": [
- "string"
], - "stateGroupId": "53b40c77-cf48-42a2-a432-db65ae3afc7a",
- "relations": {
- "self": {
- "type": "eventTypes",
- "id": "6df795fa-2b74-48fe-9243-6c96f1104acd"
}, - "parent": {
- "type": "eventTypeGroups",
- "id": "29101d41-f0d7-44be-8d14-5f21c57d6bf0"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Event Types
id required | string <guid> Example: 6df795fa-2b74-48fe-9243-6c96f1104acd Id of the object |
object |
{- "relations": {
- "self": {
- "type": "eventTypes",
- "id": "6df795fa-2b74-48fe-9243-6c96f1104acd"
}, - "parent": {
- "type": "eventTypeGroups",
- "id": "29101d41-f0d7-44be-8d14-5f21c57d6bf0"
}
}
}
{- "data": {
- "builtIn": true,
- "counterEventID": "0ee90664-2924-42a0-a816-4129d0ecabdc",
- "description": "EventType may have a long description",
- "displayName": "Communication Stopped",
- "generatorGroupId": "string",
- "generatorGroupName": "string",
- "generatorID": "string",
- "generatorName": "string",
- "generatorSubtype": "string",
- "generatorType": "Device",
- "id": "6df795fa-2b74-48fe-9243-6c96f1104acd",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "CommunicationStopped",
- "occursGlobally": false,
- "sourceArray": [
- "string"
], - "sourceFilterArray": [
- "string"
], - "stateGroupId": "53b40c77-cf48-42a2-a432-db65ae3afc7a",
- "relations": {
- "self": {
- "type": "eventTypes",
- "id": "6df795fa-2b74-48fe-9243-6c96f1104acd"
}, - "parent": {
- "type": "eventTypeGroups",
- "id": "29101d41-f0d7-44be-8d14-5f21c57d6bf0"
}
}
}
}
Event Types
id required | string <guid> Example: 6df795fa-2b74-48fe-9243-6c96f1104acd Id of the object |
object |
{- "relations": {
- "self": {
- "type": "eventTypes",
- "id": "6df795fa-2b74-48fe-9243-6c96f1104acd"
}, - "parent": {
- "type": "eventTypeGroups",
- "id": "29101d41-f0d7-44be-8d14-5f21c57d6bf0"
}
}
}
{- "data": {
- "builtIn": true,
- "counterEventID": "0ee90664-2924-42a0-a816-4129d0ecabdc",
- "description": "EventType may have a long description",
- "displayName": "Communication Stopped",
- "generatorGroupId": "string",
- "generatorGroupName": "string",
- "generatorID": "string",
- "generatorName": "string",
- "generatorSubtype": "string",
- "generatorType": "Device",
- "id": "6df795fa-2b74-48fe-9243-6c96f1104acd",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "CommunicationStopped",
- "occursGlobally": false,
- "sourceArray": [
- "string"
], - "sourceFilterArray": [
- "string"
], - "stateGroupId": "53b40c77-cf48-42a2-a432-db65ae3afc7a",
- "relations": {
- "self": {
- "type": "eventTypes",
- "id": "6df795fa-2b74-48fe-9243-6c96f1104acd"
}, - "parent": {
- "type": "eventTypeGroups",
- "id": "29101d41-f0d7-44be-8d14-5f21c57d6bf0"
}
}
}
}
{- "array": [
- {
- "analyticsEvents": [
- {
- "description": "AnalyticsEvent may have a long description",
- "displayName": "MyAnalyticsEvent",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyAnalyticsEvent",
- "sourceArray": [
- "string"
], - "relations": {
- "self": {
- "type": "analyticsEvents",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2"
}
}
}
], - "displayName": "Device - Predefined",
- "eventTypes": [
- {
- "builtIn": true,
- "counterEventID": "0ee90664-2924-42a0-a816-4129d0ecabdc",
- "description": "EventType may have a long description",
- "displayName": "Communication Stopped",
- "generatorGroupId": "string",
- "generatorGroupName": "string",
- "generatorID": "string",
- "generatorName": "string",
- "generatorSubtype": "string",
- "generatorType": "Device",
- "id": "6df795fa-2b74-48fe-9243-6c96f1104acd",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "CommunicationStopped",
- "occursGlobally": false,
- "sourceArray": [
- "string"
], - "sourceFilterArray": [
- "string"
], - "stateGroupId": "53b40c77-cf48-42a2-a432-db65ae3afc7a",
- "relations": {
- "self": {
- "type": "eventTypes",
- "id": "6df795fa-2b74-48fe-9243-6c96f1104acd"
}, - "parent": {
- "type": "eventTypeGroups",
- "id": "29101d41-f0d7-44be-8d14-5f21c57d6bf0"
}
}
}
], - "genericEvents": [
- {
- "dataSource": "GenericEventDataSource[6dfbcf65-fdbf-4f69-898b-f9251a51854d]",
- "displayName": "MyGenericEvent",
- "enabled": true,
- "expression": "\\\"abc\\\"",
- "expressionType": "0",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyGenericEvent",
- "priority": 100,
- "shadowId": "8adba830-9bb3-4234-b0cb-4e3d68356a96",
- "relations": {
- "self": {
- "type": "genericEvents",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c"
}
}
}
], - "userDefinedEvents": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "displayName": "Event Low",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Event Low",
- "subtype": "UserDefined",
- "relations": {
- "self": {
- "type": "userDefinedEvents",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1"
}
}
}
], - "relations": {
- "self": {
- "type": "eventTypeGroups",
- "id": "29101d41-f0d7-44be-8d14-5f21c57d6bf0"
}
}
}
]
}
Event Group
id required | string <guid> Example: 29101d41-f0d7-44be-8d14-5f21c57d6bf0 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "analyticsEvents": [
- {
- "description": "AnalyticsEvent may have a long description",
- "displayName": "MyAnalyticsEvent",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyAnalyticsEvent",
- "sourceArray": [
- "string"
], - "relations": {
- "self": {
- "type": "analyticsEvents",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2"
}
}
}
], - "displayName": "Device - Predefined",
- "eventTypes": [
- {
- "builtIn": true,
- "counterEventID": "0ee90664-2924-42a0-a816-4129d0ecabdc",
- "description": "EventType may have a long description",
- "displayName": "Communication Stopped",
- "generatorGroupId": "string",
- "generatorGroupName": "string",
- "generatorID": "string",
- "generatorName": "string",
- "generatorSubtype": "string",
- "generatorType": "Device",
- "id": "6df795fa-2b74-48fe-9243-6c96f1104acd",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "CommunicationStopped",
- "occursGlobally": false,
- "sourceArray": [
- "string"
], - "sourceFilterArray": [
- "string"
], - "stateGroupId": "53b40c77-cf48-42a2-a432-db65ae3afc7a",
- "relations": {
- "self": {
- "type": "eventTypes",
- "id": "6df795fa-2b74-48fe-9243-6c96f1104acd"
}, - "parent": {
- "type": "eventTypeGroups",
- "id": "29101d41-f0d7-44be-8d14-5f21c57d6bf0"
}
}
}
], - "genericEvents": [
- {
- "dataSource": "GenericEventDataSource[6dfbcf65-fdbf-4f69-898b-f9251a51854d]",
- "displayName": "MyGenericEvent",
- "enabled": true,
- "expression": "\\\"abc\\\"",
- "expressionType": "0",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyGenericEvent",
- "priority": 100,
- "shadowId": "8adba830-9bb3-4234-b0cb-4e3d68356a96",
- "relations": {
- "self": {
- "type": "genericEvents",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c"
}
}
}
], - "userDefinedEvents": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "displayName": "Event Low",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Event Low",
- "subtype": "UserDefined",
- "relations": {
- "self": {
- "type": "userDefinedEvents",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1"
}
}
}
], - "relations": {
- "self": {
- "type": "eventTypeGroups",
- "id": "29101d41-f0d7-44be-8d14-5f21c57d6bf0"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Event Group
id required | string <guid> Example: 29101d41-f0d7-44be-8d14-5f21c57d6bf0 Id of the object |
object |
{- "relations": {
- "self": {
- "type": "eventTypeGroups",
- "id": "29101d41-f0d7-44be-8d14-5f21c57d6bf0"
}
}
}
{- "data": {
- "analyticsEvents": [
- {
- "description": "AnalyticsEvent may have a long description",
- "displayName": "MyAnalyticsEvent",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyAnalyticsEvent",
- "sourceArray": [
- "string"
], - "relations": {
- "self": {
- "type": "analyticsEvents",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2"
}
}
}
], - "displayName": "Device - Predefined",
- "eventTypes": [
- {
- "builtIn": true,
- "counterEventID": "0ee90664-2924-42a0-a816-4129d0ecabdc",
- "description": "EventType may have a long description",
- "displayName": "Communication Stopped",
- "generatorGroupId": "string",
- "generatorGroupName": "string",
- "generatorID": "string",
- "generatorName": "string",
- "generatorSubtype": "string",
- "generatorType": "Device",
- "id": "6df795fa-2b74-48fe-9243-6c96f1104acd",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "CommunicationStopped",
- "occursGlobally": false,
- "sourceArray": [
- "string"
], - "sourceFilterArray": [
- "string"
], - "stateGroupId": "53b40c77-cf48-42a2-a432-db65ae3afc7a",
- "relations": {
- "self": {
- "type": "eventTypes",
- "id": "6df795fa-2b74-48fe-9243-6c96f1104acd"
}, - "parent": {
- "type": "eventTypeGroups",
- "id": "29101d41-f0d7-44be-8d14-5f21c57d6bf0"
}
}
}
], - "genericEvents": [
- {
- "dataSource": "GenericEventDataSource[6dfbcf65-fdbf-4f69-898b-f9251a51854d]",
- "displayName": "MyGenericEvent",
- "enabled": true,
- "expression": "\\\"abc\\\"",
- "expressionType": "0",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyGenericEvent",
- "priority": 100,
- "shadowId": "8adba830-9bb3-4234-b0cb-4e3d68356a96",
- "relations": {
- "self": {
- "type": "genericEvents",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c"
}
}
}
], - "userDefinedEvents": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "displayName": "Event Low",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Event Low",
- "subtype": "UserDefined",
- "relations": {
- "self": {
- "type": "userDefinedEvents",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1"
}
}
}
], - "relations": {
- "self": {
- "type": "eventTypeGroups",
- "id": "29101d41-f0d7-44be-8d14-5f21c57d6bf0"
}
}
}
}
Event Group
id required | string <guid> Example: 29101d41-f0d7-44be-8d14-5f21c57d6bf0 Id of the object |
object |
{- "relations": {
- "self": {
- "type": "eventTypeGroups",
- "id": "29101d41-f0d7-44be-8d14-5f21c57d6bf0"
}
}
}
{- "data": {
- "analyticsEvents": [
- {
- "description": "AnalyticsEvent may have a long description",
- "displayName": "MyAnalyticsEvent",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyAnalyticsEvent",
- "sourceArray": [
- "string"
], - "relations": {
- "self": {
- "type": "analyticsEvents",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2"
}
}
}
], - "displayName": "Device - Predefined",
- "eventTypes": [
- {
- "builtIn": true,
- "counterEventID": "0ee90664-2924-42a0-a816-4129d0ecabdc",
- "description": "EventType may have a long description",
- "displayName": "Communication Stopped",
- "generatorGroupId": "string",
- "generatorGroupName": "string",
- "generatorID": "string",
- "generatorName": "string",
- "generatorSubtype": "string",
- "generatorType": "Device",
- "id": "6df795fa-2b74-48fe-9243-6c96f1104acd",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "CommunicationStopped",
- "occursGlobally": false,
- "sourceArray": [
- "string"
], - "sourceFilterArray": [
- "string"
], - "stateGroupId": "53b40c77-cf48-42a2-a432-db65ae3afc7a",
- "relations": {
- "self": {
- "type": "eventTypes",
- "id": "6df795fa-2b74-48fe-9243-6c96f1104acd"
}, - "parent": {
- "type": "eventTypeGroups",
- "id": "29101d41-f0d7-44be-8d14-5f21c57d6bf0"
}
}
}
], - "genericEvents": [
- {
- "dataSource": "GenericEventDataSource[6dfbcf65-fdbf-4f69-898b-f9251a51854d]",
- "displayName": "MyGenericEvent",
- "enabled": true,
- "expression": "\\\"abc\\\"",
- "expressionType": "0",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyGenericEvent",
- "priority": 100,
- "shadowId": "8adba830-9bb3-4234-b0cb-4e3d68356a96",
- "relations": {
- "self": {
- "type": "genericEvents",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c"
}
}
}
], - "userDefinedEvents": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "displayName": "Event Low",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Event Low",
- "subtype": "UserDefined",
- "relations": {
- "self": {
- "type": "userDefinedEvents",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1"
}
}
}
], - "relations": {
- "self": {
- "type": "eventTypeGroups",
- "id": "29101d41-f0d7-44be-8d14-5f21c57d6bf0"
}
}
}
}
Event Group
id required | string <guid> Example: 29101d41-f0d7-44be-8d14-5f21c57d6bf0 Id of the eventTypeGroup object |
{- "array": [
- {
- "description": "AnalyticsEvent may have a long description",
- "displayName": "MyAnalyticsEvent",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyAnalyticsEvent",
- "sourceArray": [
- "string"
], - "relations": {
- "self": {
- "type": "analyticsEvents",
- "id": "a03af6dd-262b-431c-864a-e92e567248e2"
}
}
}
]
}
Event Group
id required | string <guid> Example: 29101d41-f0d7-44be-8d14-5f21c57d6bf0 Id of the eventTypeGroup object |
{- "array": [
- {
- "builtIn": true,
- "counterEventID": "0ee90664-2924-42a0-a816-4129d0ecabdc",
- "description": "EventType may have a long description",
- "displayName": "Communication Stopped",
- "generatorGroupId": "string",
- "generatorGroupName": "string",
- "generatorID": "string",
- "generatorName": "string",
- "generatorSubtype": "string",
- "generatorType": "Device",
- "id": "6df795fa-2b74-48fe-9243-6c96f1104acd",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "CommunicationStopped",
- "occursGlobally": false,
- "sourceArray": [
- "string"
], - "sourceFilterArray": [
- "string"
], - "stateGroupId": "53b40c77-cf48-42a2-a432-db65ae3afc7a",
- "relations": {
- "self": {
- "type": "eventTypes",
- "id": "6df795fa-2b74-48fe-9243-6c96f1104acd"
}, - "parent": {
- "type": "eventTypeGroups",
- "id": "29101d41-f0d7-44be-8d14-5f21c57d6bf0"
}
}
}
]
}
Event Group
id required | string <guid> Example: 29101d41-f0d7-44be-8d14-5f21c57d6bf0 Id of the eventTypeGroup object |
{- "array": [
- {
- "dataSource": "GenericEventDataSource[6dfbcf65-fdbf-4f69-898b-f9251a51854d]",
- "displayName": "MyGenericEvent",
- "enabled": true,
- "expression": "\\\"abc\\\"",
- "expressionType": "0",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyGenericEvent",
- "priority": 100,
- "shadowId": "8adba830-9bb3-4234-b0cb-4e3d68356a96",
- "relations": {
- "self": {
- "type": "genericEvents",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c"
}
}
}
]
}
Event Group
id required | string <guid> Example: 29101d41-f0d7-44be-8d14-5f21c57d6bf0 Id of the eventTypeGroup object |
{- "array": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "displayName": "Event Low",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Event Low",
- "subtype": "UserDefined",
- "relations": {
- "self": {
- "type": "userDefinedEvents",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1"
}
}
}
]
}
Generic events. To include disabled items add ?disabled to the request.
disabled | boolean Add this parameter to have disabled items included |
{- "array": [
- {
- "dataSource": "GenericEventDataSource[6dfbcf65-fdbf-4f69-898b-f9251a51854d]",
- "displayName": "MyGenericEvent",
- "enabled": true,
- "expression": "\\\"abc\\\"",
- "expressionType": "0",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyGenericEvent",
- "priority": 100,
- "shadowId": "8adba830-9bb3-4234-b0cb-4e3d68356a96",
- "relations": {
- "self": {
- "type": "genericEvents",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c"
}
}
}
]
}
Generic events
dataSource | string Enum: "GenericEventDataSource[b867db0c-be9e-422b-b934-6fc7fa98c5d8]" "GenericEventDataSource[8607bccc-2bb5-4b47-a7de-8225d14c4213]" "GenericEventDataSource[6dfbcf65-fdbf-4f69-898b-f9251a51854d]" Data source.
Value map to display names:
GenericEventDataSource[b867db0c-be9e-422b-b934-6fc7fa98c5d8]=Compatible |
enabled | boolean |
expression | string Expression |
expressionType | string Enum: "0" "1" "2" Expression type.
Value map to display names:
0=Search |
name | string Name |
priority | integer Priority |
object |
{- "dataSource": "GenericEventDataSource[6dfbcf65-fdbf-4f69-898b-f9251a51854d]",
- "enabled": true,
- "expression": "\\\"abc\\\"",
- "expressionType": "0",
- "name": "MyGenericEvent",
- "priority": 100,
- "relations": {
- "self": {
- "type": "genericEvents",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c"
}
}
}
{- "result": {
- "dataSource": "GenericEventDataSource[6dfbcf65-fdbf-4f69-898b-f9251a51854d]",
- "displayName": "MyGenericEvent",
- "enabled": true,
- "expression": "\\\"abc\\\"",
- "expressionType": "0",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyGenericEvent",
- "priority": 100,
- "shadowId": "8adba830-9bb3-4234-b0cb-4e3d68356a96",
- "relations": {
- "self": {
- "type": "genericEvents",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c"
}
}
}
}
Generic events
id required | string <guid> Example: d804a255-e028-4b62-be4b-fb09fd893a6c Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "dataSource": "GenericEventDataSource[6dfbcf65-fdbf-4f69-898b-f9251a51854d]",
- "displayName": "MyGenericEvent",
- "enabled": true,
- "expression": "\\\"abc\\\"",
- "expressionType": "0",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyGenericEvent",
- "priority": 100,
- "shadowId": "8adba830-9bb3-4234-b0cb-4e3d68356a96",
- "relations": {
- "self": {
- "type": "genericEvents",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Generic events
id required | string <guid> Example: d804a255-e028-4b62-be4b-fb09fd893a6c Id of the object |
dataSource | string Enum: "GenericEventDataSource[b867db0c-be9e-422b-b934-6fc7fa98c5d8]" "GenericEventDataSource[8607bccc-2bb5-4b47-a7de-8225d14c4213]" "GenericEventDataSource[6dfbcf65-fdbf-4f69-898b-f9251a51854d]" Data source.
Value map to display names:
GenericEventDataSource[b867db0c-be9e-422b-b934-6fc7fa98c5d8]=Compatible |
enabled | boolean |
expression | string Expression |
expressionType | string Enum: "0" "1" "2" Expression type.
Value map to display names:
0=Search |
name | string Name |
priority | integer Priority |
object |
{- "dataSource": "GenericEventDataSource[6dfbcf65-fdbf-4f69-898b-f9251a51854d]",
- "enabled": true,
- "expression": "\\\"abc\\\"",
- "expressionType": "0",
- "name": "MyGenericEvent",
- "priority": 100,
- "relations": {
- "self": {
- "type": "genericEvents",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c"
}
}
}
{- "data": {
- "dataSource": "GenericEventDataSource[6dfbcf65-fdbf-4f69-898b-f9251a51854d]",
- "displayName": "MyGenericEvent",
- "enabled": true,
- "expression": "\\\"abc\\\"",
- "expressionType": "0",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyGenericEvent",
- "priority": 100,
- "shadowId": "8adba830-9bb3-4234-b0cb-4e3d68356a96",
- "relations": {
- "self": {
- "type": "genericEvents",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c"
}
}
}
}
Generic events
id required | string <guid> Example: d804a255-e028-4b62-be4b-fb09fd893a6c Id of the object |
dataSource | string Enum: "GenericEventDataSource[b867db0c-be9e-422b-b934-6fc7fa98c5d8]" "GenericEventDataSource[8607bccc-2bb5-4b47-a7de-8225d14c4213]" "GenericEventDataSource[6dfbcf65-fdbf-4f69-898b-f9251a51854d]" Data source.
Value map to display names:
GenericEventDataSource[b867db0c-be9e-422b-b934-6fc7fa98c5d8]=Compatible |
enabled | boolean |
expression | string Expression |
expressionType | string Enum: "0" "1" "2" Expression type.
Value map to display names:
0=Search |
name | string Name |
priority | integer Priority |
object |
{- "dataSource": "GenericEventDataSource[6dfbcf65-fdbf-4f69-898b-f9251a51854d]",
- "enabled": true,
- "expression": "\\\"abc\\\"",
- "expressionType": "0",
- "name": "MyGenericEvent",
- "priority": 100,
- "relations": {
- "self": {
- "type": "genericEvents",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c"
}
}
}
{- "data": {
- "dataSource": "GenericEventDataSource[6dfbcf65-fdbf-4f69-898b-f9251a51854d]",
- "displayName": "MyGenericEvent",
- "enabled": true,
- "expression": "\\\"abc\\\"",
- "expressionType": "0",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyGenericEvent",
- "priority": 100,
- "shadowId": "8adba830-9bb3-4234-b0cb-4e3d68356a96",
- "relations": {
- "self": {
- "type": "genericEvents",
- "id": "d804a255-e028-4b62-be4b-fb09fd893a6c"
}
}
}
}
Generic event data sources. To include disabled items add ?disabled to the request.
disabled | boolean Add this parameter to have disabled items included |
{- "array": [
- {
- "dataSourceAddressFamily": "Both",
- "dataSourceAllowed": "string",
- "dataSourceAllowed6": "string",
- "dataSourceEcho": "None",
- "dataSourceEncoding": 1252,
- "dataSourceLog": false,
- "dataSourcePort": 5555,
- "dataSourceProtocol": "Tcp",
- "dataSourceSeparator": "string",
- "displayName": "MyGenericEventDataSource",
- "enabled": true,
- "id": "311a6f1d-7fa8-4bff-8daa-8850a08a6498",
- "name": "MyGenericEventDataSource",
- "relations": {
- "self": {
- "type": "genericEventDataSources",
- "id": "311a6f1d-7fa8-4bff-8daa-8850a08a6498"
}
}
}
]
}
Generic event data sources
dataSourceAddressFamily | string Enum: "InterNetwork" "InterNetworkV6" "Both" IP address family.
Value map to display names:
InterNetwork=IPv4 |
dataSourceAllowed | string Allowed external IPv4 addresses |
dataSourceAllowed6 | string Allowed external IPv6 addresses |
dataSourceEcho | string Enum: "Full" "Statistics" "None" Echo type selector.
Value map to display names:
Full=Echo all bytes |
dataSourceEncoding | integer Encoding (code page) |
dataSourceLog | boolean Write to log |
dataSourcePort | integer Port |
dataSourceProtocol | string Enum: "Tcp" "Udp" "Both" Protocol type(s).
Value map to display names:
Tcp=TCP |
dataSourceSeparator | string Separator bytes |
enabled | boolean |
name | string Name |
object |
{- "dataSourceAddressFamily": "Both",
- "dataSourceAllowed": "string",
- "dataSourceAllowed6": "string",
- "dataSourceEcho": "None",
- "dataSourceEncoding": 1252,
- "dataSourceLog": false,
- "dataSourcePort": 5555,
- "dataSourceProtocol": "Tcp",
- "dataSourceSeparator": "string",
- "enabled": true,
- "name": "MyGenericEventDataSource",
- "relations": {
- "self": {
- "type": "genericEventDataSources",
- "id": "311a6f1d-7fa8-4bff-8daa-8850a08a6498"
}
}
}
{- "result": {
- "dataSourceAddressFamily": "Both",
- "dataSourceAllowed": "string",
- "dataSourceAllowed6": "string",
- "dataSourceEcho": "None",
- "dataSourceEncoding": 1252,
- "dataSourceLog": false,
- "dataSourcePort": 5555,
- "dataSourceProtocol": "Tcp",
- "dataSourceSeparator": "string",
- "displayName": "MyGenericEventDataSource",
- "enabled": true,
- "id": "311a6f1d-7fa8-4bff-8daa-8850a08a6498",
- "name": "MyGenericEventDataSource",
- "relations": {
- "self": {
- "type": "genericEventDataSources",
- "id": "311a6f1d-7fa8-4bff-8daa-8850a08a6498"
}
}
}
}
Generic event data sources
id required | string <guid> Example: 311a6f1d-7fa8-4bff-8daa-8850a08a6498 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "dataSourceAddressFamily": "Both",
- "dataSourceAllowed": "string",
- "dataSourceAllowed6": "string",
- "dataSourceEcho": "None",
- "dataSourceEncoding": 1252,
- "dataSourceLog": false,
- "dataSourcePort": 5555,
- "dataSourceProtocol": "Tcp",
- "dataSourceSeparator": "string",
- "displayName": "MyGenericEventDataSource",
- "enabled": true,
- "id": "311a6f1d-7fa8-4bff-8daa-8850a08a6498",
- "name": "MyGenericEventDataSource",
- "relations": {
- "self": {
- "type": "genericEventDataSources",
- "id": "311a6f1d-7fa8-4bff-8daa-8850a08a6498"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Generic event data sources
id required | string <guid> Example: 311a6f1d-7fa8-4bff-8daa-8850a08a6498 Id of the object |
dataSourceAddressFamily | string Enum: "InterNetwork" "InterNetworkV6" "Both" IP address family.
Value map to display names:
InterNetwork=IPv4 |
dataSourceAllowed | string Allowed external IPv4 addresses |
dataSourceAllowed6 | string Allowed external IPv6 addresses |
dataSourceEcho | string Enum: "Full" "Statistics" "None" Echo type selector.
Value map to display names:
Full=Echo all bytes |
dataSourceEncoding | integer Encoding (code page) |
dataSourceLog | boolean Write to log |
dataSourcePort | integer Port |
dataSourceProtocol | string Enum: "Tcp" "Udp" "Both" Protocol type(s).
Value map to display names:
Tcp=TCP |
dataSourceSeparator | string Separator bytes |
enabled | boolean |
name | string Name |
object |
{- "dataSourceAddressFamily": "Both",
- "dataSourceAllowed": "string",
- "dataSourceAllowed6": "string",
- "dataSourceEcho": "None",
- "dataSourceEncoding": 1252,
- "dataSourceLog": false,
- "dataSourcePort": 5555,
- "dataSourceProtocol": "Tcp",
- "dataSourceSeparator": "string",
- "enabled": true,
- "name": "MyGenericEventDataSource",
- "relations": {
- "self": {
- "type": "genericEventDataSources",
- "id": "311a6f1d-7fa8-4bff-8daa-8850a08a6498"
}
}
}
{- "data": {
- "dataSourceAddressFamily": "Both",
- "dataSourceAllowed": "string",
- "dataSourceAllowed6": "string",
- "dataSourceEcho": "None",
- "dataSourceEncoding": 1252,
- "dataSourceLog": false,
- "dataSourcePort": 5555,
- "dataSourceProtocol": "Tcp",
- "dataSourceSeparator": "string",
- "displayName": "MyGenericEventDataSource",
- "enabled": true,
- "id": "311a6f1d-7fa8-4bff-8daa-8850a08a6498",
- "name": "MyGenericEventDataSource",
- "relations": {
- "self": {
- "type": "genericEventDataSources",
- "id": "311a6f1d-7fa8-4bff-8daa-8850a08a6498"
}
}
}
}
Generic event data sources
id required | string <guid> Example: 311a6f1d-7fa8-4bff-8daa-8850a08a6498 Id of the object |
dataSourceAddressFamily | string Enum: "InterNetwork" "InterNetworkV6" "Both" IP address family.
Value map to display names:
InterNetwork=IPv4 |
dataSourceAllowed | string Allowed external IPv4 addresses |
dataSourceAllowed6 | string Allowed external IPv6 addresses |
dataSourceEcho | string Enum: "Full" "Statistics" "None" Echo type selector.
Value map to display names:
Full=Echo all bytes |
dataSourceEncoding | integer Encoding (code page) |
dataSourceLog | boolean Write to log |
dataSourcePort | integer Port |
dataSourceProtocol | string Enum: "Tcp" "Udp" "Both" Protocol type(s).
Value map to display names:
Tcp=TCP |
dataSourceSeparator | string Separator bytes |
enabled | boolean |
name | string Name |
object |
{- "dataSourceAddressFamily": "Both",
- "dataSourceAllowed": "string",
- "dataSourceAllowed6": "string",
- "dataSourceEcho": "None",
- "dataSourceEncoding": 1252,
- "dataSourceLog": false,
- "dataSourcePort": 5555,
- "dataSourceProtocol": "Tcp",
- "dataSourceSeparator": "string",
- "enabled": true,
- "name": "MyGenericEventDataSource",
- "relations": {
- "self": {
- "type": "genericEventDataSources",
- "id": "311a6f1d-7fa8-4bff-8daa-8850a08a6498"
}
}
}
{- "data": {
- "dataSourceAddressFamily": "Both",
- "dataSourceAllowed": "string",
- "dataSourceAllowed6": "string",
- "dataSourceEcho": "None",
- "dataSourceEncoding": 1252,
- "dataSourceLog": false,
- "dataSourcePort": 5555,
- "dataSourceProtocol": "Tcp",
- "dataSourceSeparator": "string",
- "displayName": "MyGenericEventDataSource",
- "enabled": true,
- "id": "311a6f1d-7fa8-4bff-8daa-8850a08a6498",
- "name": "MyGenericEventDataSource",
- "relations": {
- "self": {
- "type": "genericEventDataSources",
- "id": "311a6f1d-7fa8-4bff-8daa-8850a08a6498"
}
}
}
}
{- "array": [
- {
- "displayName": "Live FPS",
- "id": "14a4425c-7410-48c8-b08b-f3f2c0d843ce",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Live FPS",
- "states": [
- "string"
], - "relations": {
- "self": {
- "type": "stateGroups",
- "id": "14a4425c-7410-48c8-b08b-f3f2c0d843ce"
}
}
}
]
}
Add new stateGroups
name | string Name |
states | Array of strings States. A list of possible states for this state group. |
object |
{- "name": "Live FPS",
- "states": [
- "string"
], - "relations": {
- "self": {
- "type": "stateGroups",
- "id": "14a4425c-7410-48c8-b08b-f3f2c0d843ce"
}
}
}
{- "result": {
- "displayName": "Live FPS",
- "id": "14a4425c-7410-48c8-b08b-f3f2c0d843ce",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Live FPS",
- "states": [
- "string"
], - "relations": {
- "self": {
- "type": "stateGroups",
- "id": "14a4425c-7410-48c8-b08b-f3f2c0d843ce"
}
}
}
}
Get specific object of stateGroups
id required | string <guid> Example: 14a4425c-7410-48c8-b08b-f3f2c0d843ce Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "displayName": "Live FPS",
- "id": "14a4425c-7410-48c8-b08b-f3f2c0d843ce",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Live FPS",
- "states": [
- "string"
], - "relations": {
- "self": {
- "type": "stateGroups",
- "id": "14a4425c-7410-48c8-b08b-f3f2c0d843ce"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Update all fields on stateGroups
id required | string <guid> Example: 14a4425c-7410-48c8-b08b-f3f2c0d843ce Id of the object |
name | string Name |
states | Array of strings States. A list of possible states for this state group. |
object |
{- "name": "Live FPS",
- "states": [
- "string"
], - "relations": {
- "self": {
- "type": "stateGroups",
- "id": "14a4425c-7410-48c8-b08b-f3f2c0d843ce"
}
}
}
{- "data": {
- "displayName": "Live FPS",
- "id": "14a4425c-7410-48c8-b08b-f3f2c0d843ce",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Live FPS",
- "states": [
- "string"
], - "relations": {
- "self": {
- "type": "stateGroups",
- "id": "14a4425c-7410-48c8-b08b-f3f2c0d843ce"
}
}
}
}
Update provided fields on stateGroups
id required | string <guid> Example: 14a4425c-7410-48c8-b08b-f3f2c0d843ce Id of the object |
name | string Name |
states | Array of strings States. A list of possible states for this state group. |
object |
{- "name": "Live FPS",
- "states": [
- "string"
], - "relations": {
- "self": {
- "type": "stateGroups",
- "id": "14a4425c-7410-48c8-b08b-f3f2c0d843ce"
}
}
}
{- "data": {
- "displayName": "Live FPS",
- "id": "14a4425c-7410-48c8-b08b-f3f2c0d843ce",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Live FPS",
- "states": [
- "string"
], - "relations": {
- "self": {
- "type": "stateGroups",
- "id": "14a4425c-7410-48c8-b08b-f3f2c0d843ce"
}
}
}
}
{- "array": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "displayName": "Event Low",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Event Low",
- "subtype": "UserDefined",
- "relations": {
- "self": {
- "type": "userDefinedEvents",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1"
}
}
}
]
}
User-defined event
name | string Name |
object |
{- "name": "Event Low",
- "relations": {
- "self": {
- "type": "userDefinedEvents",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1"
}
}
}
{- "result": {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "displayName": "Event Low",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Event Low",
- "subtype": "UserDefined",
- "relations": {
- "self": {
- "type": "userDefinedEvents",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1"
}
}
}
}
User-defined event
id required | string <guid> Example: d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "displayName": "Event Low",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Event Low",
- "subtype": "UserDefined",
- "relations": {
- "self": {
- "type": "userDefinedEvents",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
User-defined event
id required | string <guid> Example: d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1 Id of the object |
name | string Name |
object |
{- "name": "Event Low",
- "relations": {
- "self": {
- "type": "userDefinedEvents",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1"
}
}
}
{- "data": {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "displayName": "Event Low",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Event Low",
- "subtype": "UserDefined",
- "relations": {
- "self": {
- "type": "userDefinedEvents",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1"
}
}
}
}
User-defined event
id required | string <guid> Example: d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1 Id of the object |
name | string Name |
object |
{- "name": "Event Low",
- "relations": {
- "self": {
- "type": "userDefinedEvents",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1"
}
}
}
{- "data": {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "displayName": "Event Low",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Event Low",
- "subtype": "UserDefined",
- "relations": {
- "self": {
- "type": "userDefinedEvents",
- "id": "d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1"
}
}
}
}
User-defined event
id required | string <guid> Example: d8b5a5a4-161d-42c0-bfb8-6a023d6f43e1 Id of the object |
task required | string Example: task=ChangeSecurityPermissions task=ChangeSecurityPermissions ChangeSecurityPermissions - Edit permissions |
object (path_roles) User or role to update |
{- "userPath": {
- "type": "roles",
- "id": "9b9cd381-00ab-41a6-a0a5-be8c705bc26b"
}
}
{- "result": {
- "displayName": "MultiStream Camera",
- "enabled": true,
- "userPath": {
- "type": "roles",
- "id": "9b9cd381-00ab-41a6-a0a5-be8c705bc26b"
}
}
}
{- "array": [
- {
- "accessControlUnits": [
- {
- "accessControlUnits": [
- { }
], - "displayName": "Controller 1",
- "id": "e4d81a4d-b0cc-4033-be19-2b50a4469548",
- "name": "Controller 1",
- "ruleGroup": "AccessControlRuleGroup[16F7C724-D91F-1443-1D8E-26F90A94FBB7]",
- "relations": {
- "self": {
- "type": "accessControlUnits",
- "id": "e4d81a4d-b0cc-4033-be19-2b50a4469548"
}, - "parent": {
- "type": "accessControlSystems",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
}
}
], - "displayName": "Test System",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6",
- "name": "Test System",
- "ruleGroup": "AccessControlRuleGroup[7142F91D-9959-0519-25B7-B47381590EE9]",
- "relations": {
- "self": {
- "type": "accessControlSystems",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
}
}
]
}
Access control systems
id required | string <guid> Example: 80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "accessControlUnits": [
- {
- "accessControlUnits": [
- { }
], - "displayName": "Controller 1",
- "id": "e4d81a4d-b0cc-4033-be19-2b50a4469548",
- "name": "Controller 1",
- "ruleGroup": "AccessControlRuleGroup[16F7C724-D91F-1443-1D8E-26F90A94FBB7]",
- "relations": {
- "self": {
- "type": "accessControlUnits",
- "id": "e4d81a4d-b0cc-4033-be19-2b50a4469548"
}, - "parent": {
- "type": "accessControlSystems",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
}
}
], - "displayName": "Test System",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6",
- "name": "Test System",
- "ruleGroup": "AccessControlRuleGroup[7142F91D-9959-0519-25B7-B47381590EE9]",
- "relations": {
- "self": {
- "type": "accessControlSystems",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Access control systems
id required | string <guid> Example: 80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6 Id of the object |
object |
{- "relations": {
- "self": {
- "type": "accessControlSystems",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
}
}
{- "data": {
- "accessControlUnits": [
- {
- "accessControlUnits": [
- { }
], - "displayName": "Controller 1",
- "id": "e4d81a4d-b0cc-4033-be19-2b50a4469548",
- "name": "Controller 1",
- "ruleGroup": "AccessControlRuleGroup[16F7C724-D91F-1443-1D8E-26F90A94FBB7]",
- "relations": {
- "self": {
- "type": "accessControlUnits",
- "id": "e4d81a4d-b0cc-4033-be19-2b50a4469548"
}, - "parent": {
- "type": "accessControlSystems",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
}
}
], - "displayName": "Test System",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6",
- "name": "Test System",
- "ruleGroup": "AccessControlRuleGroup[7142F91D-9959-0519-25B7-B47381590EE9]",
- "relations": {
- "self": {
- "type": "accessControlSystems",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
}
}
}
Access control systems
id required | string <guid> Example: 80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6 Id of the object |
object |
{- "relations": {
- "self": {
- "type": "accessControlSystems",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
}
}
{- "data": {
- "accessControlUnits": [
- {
- "accessControlUnits": [
- { }
], - "displayName": "Controller 1",
- "id": "e4d81a4d-b0cc-4033-be19-2b50a4469548",
- "name": "Controller 1",
- "ruleGroup": "AccessControlRuleGroup[16F7C724-D91F-1443-1D8E-26F90A94FBB7]",
- "relations": {
- "self": {
- "type": "accessControlUnits",
- "id": "e4d81a4d-b0cc-4033-be19-2b50a4469548"
}, - "parent": {
- "type": "accessControlSystems",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
}
}
], - "displayName": "Test System",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6",
- "name": "Test System",
- "ruleGroup": "AccessControlRuleGroup[7142F91D-9959-0519-25B7-B47381590EE9]",
- "relations": {
- "self": {
- "type": "accessControlSystems",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
}
}
}
Access control systems
id required | string <guid> Example: 80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6 Id of the object |
task required | string Example: task=GetInternalUnitPath task=GetInternalUnitPath GetInternalUnitPath - Get internal unit path |
externalId | string External ID |
{- "externalId": "string"
}
{- "result": {
- "displayName": "Test System",
- "externalId": "string"
}
}
Access control systems
id required | string <guid> Example: 80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6 Id of the accessControlSystem object |
{- "array": [
- {
- "accessControlUnits": [
- { }
], - "displayName": "Controller 1",
- "id": "e4d81a4d-b0cc-4033-be19-2b50a4469548",
- "name": "Controller 1",
- "ruleGroup": "AccessControlRuleGroup[16F7C724-D91F-1443-1D8E-26F90A94FBB7]",
- "relations": {
- "self": {
- "type": "accessControlUnits",
- "id": "e4d81a4d-b0cc-4033-be19-2b50a4469548"
}, - "parent": {
- "type": "accessControlSystems",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
}
}
]
}
Access control units
id required | string <guid> Example: e4d81a4d-b0cc-4033-be19-2b50a4469548 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "accessControlUnits": [
- { }
], - "displayName": "Controller 1",
- "id": "e4d81a4d-b0cc-4033-be19-2b50a4469548",
- "name": "Controller 1",
- "ruleGroup": "AccessControlRuleGroup[16F7C724-D91F-1443-1D8E-26F90A94FBB7]",
- "relations": {
- "self": {
- "type": "accessControlUnits",
- "id": "e4d81a4d-b0cc-4033-be19-2b50a4469548"
}, - "parent": {
- "type": "accessControlSystems",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Access control units
id required | string <guid> Example: e4d81a4d-b0cc-4033-be19-2b50a4469548 Id of the object |
object |
{- "relations": {
- "self": {
- "type": "accessControlUnits",
- "id": "e4d81a4d-b0cc-4033-be19-2b50a4469548"
}, - "parent": {
- "type": "accessControlSystems",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
}
}
{- "data": {
- "accessControlUnits": [
- { }
], - "displayName": "Controller 1",
- "id": "e4d81a4d-b0cc-4033-be19-2b50a4469548",
- "name": "Controller 1",
- "ruleGroup": "AccessControlRuleGroup[16F7C724-D91F-1443-1D8E-26F90A94FBB7]",
- "relations": {
- "self": {
- "type": "accessControlUnits",
- "id": "e4d81a4d-b0cc-4033-be19-2b50a4469548"
}, - "parent": {
- "type": "accessControlSystems",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
}
}
}
Access control units
id required | string <guid> Example: e4d81a4d-b0cc-4033-be19-2b50a4469548 Id of the object |
object |
{- "relations": {
- "self": {
- "type": "accessControlUnits",
- "id": "e4d81a4d-b0cc-4033-be19-2b50a4469548"
}, - "parent": {
- "type": "accessControlSystems",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
}
}
{- "data": {
- "accessControlUnits": [
- { }
], - "displayName": "Controller 1",
- "id": "e4d81a4d-b0cc-4033-be19-2b50a4469548",
- "name": "Controller 1",
- "ruleGroup": "AccessControlRuleGroup[16F7C724-D91F-1443-1D8E-26F90A94FBB7]",
- "relations": {
- "self": {
- "type": "accessControlUnits",
- "id": "e4d81a4d-b0cc-4033-be19-2b50a4469548"
}, - "parent": {
- "type": "accessControlSystems",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
}
}
}
Access control units
id required | string <guid> Example: e4d81a4d-b0cc-4033-be19-2b50a4469548 Id of the accessControlUnit object |
{- "array": [
- {
- "accessControlUnits": [
- { }
], - "displayName": "Controller 1",
- "id": "e4d81a4d-b0cc-4033-be19-2b50a4469548",
- "name": "Controller 1",
- "ruleGroup": "AccessControlRuleGroup[16F7C724-D91F-1443-1D8E-26F90A94FBB7]",
- "relations": {
- "self": {
- "type": "accessControlUnits",
- "id": "e4d81a4d-b0cc-4033-be19-2b50a4469548"
}, - "parent": {
- "type": "accessControlSystems",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
}
}
]
}
Alarm definitions. To include disabled items add ?disabled to the request.
disabled | boolean Add this parameter to have disabled items included |
{- "array": [
- {
- "assignableToAdmins": false,
- "autoClose": false,
- "category": "97bda9c2-bb15-4106-a59b-e72b193820ee",
- "description": "AlarmDefinition may have a long description",
- "disableEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "displayName": "Alarm High Priority",
- "enabled": true,
- "enableEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "enableRule": "0",
- "eventType": "0fcb1955-0e80-4fd4-a78a-db47ee89700c",
- "eventTypeGroup": "5946b6fa-44d9-4f4c-82bb-46a17b924265",
- "id": "9094284b-34c3-4e53-a3d7-8e7e3652567b",
- "managementTimeoutEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "managementTimeoutTime": "00:01:00",
- "mapType": "0",
- "name": "Alarm High Priority",
- "owner": "TA Test User (ta\\tatest)",
- "priority": "8188ff24-b5da-4c19-9ebf-c1d8fc2caa75",
- "relatedCameraList": [
- {
- "type": "cameras",
- "id": "abbe8d6b-765d-4a42-8e5c-14a2e5262df1"
}
], - "relatedMap": "00000000-0000-0000-0000-000000000000",
- "sourceList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "timeProfile": {
- "type": "timeProfiles",
- "id": "3a9a3f27-feb0-4781-85ba-0f6e7251eef1"
}, - "triggerEventlist": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "relations": {
- "self": {
- "type": "alarmDefinitions",
- "id": "9094284b-34c3-4e53-a3d7-8e7e3652567b"
}
}
}
]
}
Alarm definitions
assignableToAdmins | boolean Alarm assignable to Administrators. Select this to include users with an administrator role in the Assigned to list |
category | string Enum: "00000000-0000-0000-0000-000000000000" "97bda9c2-bb15-4106-a59b-e72b193820ee" Alarm category. Sets the category of the alarm. Valid options are defined in the Management Client.
Value map to display names:
00000000-0000-0000-0000-000000000000= |
description | string Description |
Array of objects (path_userDefinedEvents) | |
enabled | boolean |
Array of objects (path_userDefinedEvents) | |
enableRule | string Enum: "0" "1" "2" Enable rule. Defines when the alarm can be triggered. Options are: Always, by TimeProfile or by events. When TimeProfile is defined the TimeProfile property must contain a valid TimeProfile path, when enabled by events then both EnablingEvents and DisablingEvents must be defined.
Value map to display names:
0=Always |
eventType | string Value: "0fcb1955-0e80-4fd4-a78a-db47ee89700c" Triggering event type. Defines the type of event that should trigger an alarm, when received from the source defined. Value map to display names: 0fcb1955-0e80-4fd4-a78a-db47ee89700c=External Event |
eventTypeGroup | string Enum: "1eacbcad-d566-4375-834b-cfbe3d937caa" "6b90aee7-e6a5-4b5c-82aa-1686c19afe19" "b1ca6710-f244-4ce2-8daf-662e342c405a" "64d2c24b-a92f-48a0-b9ca-707af7828d67" "5946b6fa-44d9-4f4c-82bb-46a17b924265" "2fb8e979-188e-44cc-b1b7-a7ed9c91e5c0" "00000000-0000-0000-0000-000000000000" "1d3e945c-ecf3-49eb-85b2-3f79b8a14927" "a96692c8-51b1-4f87-b12c-0d3d9cbfc5a4" Triggering event group. Defines a group of events in the same area.
Value map to display names:
1eacbcad-d566-4375-834b-cfbe3d937caa=Device Events |
Array of objects (path_userDefinedEvents) | |
managementTimeoutTime | string Operator action time limit. If operator action is required within a specific time, the time is defined here. Format is like: HH:mm.ss. Valid values are the same as defined in the Management Client, e.g. 1 minute, 5 minutes etc. Default is 1 minute. |
mapType | string Enum: "0" "1" "2" Alarm manager view.
Value map to display names:
0=None |
name | string Name |
owner | string Owner. Defines the initial owner. Should be formatted as Identity.ToString() does, like John Doe (Acme/JD) |
priority | string Enum: "8188ff24-b5da-4c19-9ebf-c1d8fc2caa75" "9ad9338b-22ba-4f2e-bf62-e6948ae99bbf" "34f1f987-6854-44fb-88a5-daa0add1e38a" "903352ab-df68-45a0-a072-e1cf3a86d3fd" Priority. Sets the priority. Can be High, Medium, Low.
Value map to display names:
8188ff24-b5da-4c19-9ebf-c1d8fc2caa75=High |
Array of objects (path_cameras) | |
relatedMap | string Value: "00000000-0000-0000-0000-000000000000" Related map. Defines what map to show in the alarm manager, when alarm is selected. Value map to display names: 00000000-0000-0000-0000-000000000000= |
Array of objects (path_userDefinedEvents) | |
object (path_timeProfiles) Time profile. Defines what TimeProfile to be used when checking when the alarm is enabled. Property is only valid when EnableRule is set to TimeProfile. | |
Array of objects (path_userDefinedEvents) | |
object |
{- "assignableToAdmins": false,
- "category": "97bda9c2-bb15-4106-a59b-e72b193820ee",
- "description": "AlarmDefinition may have a long description",
- "disableEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "enabled": true,
- "enableEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "enableRule": "0",
- "eventType": "0fcb1955-0e80-4fd4-a78a-db47ee89700c",
- "eventTypeGroup": "5946b6fa-44d9-4f4c-82bb-46a17b924265",
- "managementTimeoutEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "managementTimeoutTime": "00:01:00",
- "mapType": "0",
- "name": "Alarm High Priority",
- "owner": "TA Test User (ta\\tatest)",
- "priority": "8188ff24-b5da-4c19-9ebf-c1d8fc2caa75",
- "relatedCameraList": [
- {
- "type": "cameras",
- "id": "abbe8d6b-765d-4a42-8e5c-14a2e5262df1"
}
], - "relatedMap": "00000000-0000-0000-0000-000000000000",
- "sourceList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "timeProfile": {
- "type": "timeProfiles",
- "id": "3a9a3f27-feb0-4781-85ba-0f6e7251eef1"
}, - "triggerEventlist": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "relations": {
- "self": {
- "type": "alarmDefinitions",
- "id": "9094284b-34c3-4e53-a3d7-8e7e3652567b"
}
}
}
{- "result": {
- "assignableToAdmins": false,
- "autoClose": false,
- "category": "97bda9c2-bb15-4106-a59b-e72b193820ee",
- "description": "AlarmDefinition may have a long description",
- "disableEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "displayName": "Alarm High Priority",
- "enabled": true,
- "enableEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "enableRule": "0",
- "eventType": "0fcb1955-0e80-4fd4-a78a-db47ee89700c",
- "eventTypeGroup": "5946b6fa-44d9-4f4c-82bb-46a17b924265",
- "id": "9094284b-34c3-4e53-a3d7-8e7e3652567b",
- "managementTimeoutEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "managementTimeoutTime": "00:01:00",
- "mapType": "0",
- "name": "Alarm High Priority",
- "owner": "TA Test User (ta\\tatest)",
- "priority": "8188ff24-b5da-4c19-9ebf-c1d8fc2caa75",
- "relatedCameraList": [
- {
- "type": "cameras",
- "id": "abbe8d6b-765d-4a42-8e5c-14a2e5262df1"
}
], - "relatedMap": "00000000-0000-0000-0000-000000000000",
- "sourceList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "timeProfile": {
- "type": "timeProfiles",
- "id": "3a9a3f27-feb0-4781-85ba-0f6e7251eef1"
}, - "triggerEventlist": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "relations": {
- "self": {
- "type": "alarmDefinitions",
- "id": "9094284b-34c3-4e53-a3d7-8e7e3652567b"
}
}
}
}
Alarm definitions
id required | string <guid> Example: 9094284b-34c3-4e53-a3d7-8e7e3652567b Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "assignableToAdmins": false,
- "autoClose": false,
- "category": "97bda9c2-bb15-4106-a59b-e72b193820ee",
- "description": "AlarmDefinition may have a long description",
- "disableEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "displayName": "Alarm High Priority",
- "enabled": true,
- "enableEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "enableRule": "0",
- "eventType": "0fcb1955-0e80-4fd4-a78a-db47ee89700c",
- "eventTypeGroup": "5946b6fa-44d9-4f4c-82bb-46a17b924265",
- "id": "9094284b-34c3-4e53-a3d7-8e7e3652567b",
- "managementTimeoutEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "managementTimeoutTime": "00:01:00",
- "mapType": "0",
- "name": "Alarm High Priority",
- "owner": "TA Test User (ta\\tatest)",
- "priority": "8188ff24-b5da-4c19-9ebf-c1d8fc2caa75",
- "relatedCameraList": [
- {
- "type": "cameras",
- "id": "abbe8d6b-765d-4a42-8e5c-14a2e5262df1"
}
], - "relatedMap": "00000000-0000-0000-0000-000000000000",
- "sourceList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "timeProfile": {
- "type": "timeProfiles",
- "id": "3a9a3f27-feb0-4781-85ba-0f6e7251eef1"
}, - "triggerEventlist": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "relations": {
- "self": {
- "type": "alarmDefinitions",
- "id": "9094284b-34c3-4e53-a3d7-8e7e3652567b"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Alarm definitions
id required | string <guid> Example: 9094284b-34c3-4e53-a3d7-8e7e3652567b Id of the object |
assignableToAdmins | boolean Alarm assignable to Administrators. Select this to include users with an administrator role in the Assigned to list |
category | string Enum: "00000000-0000-0000-0000-000000000000" "97bda9c2-bb15-4106-a59b-e72b193820ee" Alarm category. Sets the category of the alarm. Valid options are defined in the Management Client.
Value map to display names:
00000000-0000-0000-0000-000000000000= |
description | string Description |
Array of objects (path_userDefinedEvents) | |
enabled | boolean |
Array of objects (path_userDefinedEvents) | |
enableRule | string Enum: "0" "1" "2" Enable rule. Defines when the alarm can be triggered. Options are: Always, by TimeProfile or by events. When TimeProfile is defined the TimeProfile property must contain a valid TimeProfile path, when enabled by events then both EnablingEvents and DisablingEvents must be defined.
Value map to display names:
0=Always |
eventType | string Value: "0fcb1955-0e80-4fd4-a78a-db47ee89700c" Triggering event type. Defines the type of event that should trigger an alarm, when received from the source defined. Value map to display names: 0fcb1955-0e80-4fd4-a78a-db47ee89700c=External Event |
eventTypeGroup | string Enum: "1eacbcad-d566-4375-834b-cfbe3d937caa" "6b90aee7-e6a5-4b5c-82aa-1686c19afe19" "b1ca6710-f244-4ce2-8daf-662e342c405a" "64d2c24b-a92f-48a0-b9ca-707af7828d67" "5946b6fa-44d9-4f4c-82bb-46a17b924265" "2fb8e979-188e-44cc-b1b7-a7ed9c91e5c0" "00000000-0000-0000-0000-000000000000" "1d3e945c-ecf3-49eb-85b2-3f79b8a14927" "a96692c8-51b1-4f87-b12c-0d3d9cbfc5a4" Triggering event group. Defines a group of events in the same area.
Value map to display names:
1eacbcad-d566-4375-834b-cfbe3d937caa=Device Events |
Array of objects (path_userDefinedEvents) | |
managementTimeoutTime | string Operator action time limit. If operator action is required within a specific time, the time is defined here. Format is like: HH:mm.ss. Valid values are the same as defined in the Management Client, e.g. 1 minute, 5 minutes etc. Default is 1 minute. |
mapType | string Enum: "0" "1" "2" Alarm manager view.
Value map to display names:
0=None |
name | string Name |
owner | string Owner. Defines the initial owner. Should be formatted as Identity.ToString() does, like John Doe (Acme/JD) |
priority | string Enum: "8188ff24-b5da-4c19-9ebf-c1d8fc2caa75" "9ad9338b-22ba-4f2e-bf62-e6948ae99bbf" "34f1f987-6854-44fb-88a5-daa0add1e38a" "903352ab-df68-45a0-a072-e1cf3a86d3fd" Priority. Sets the priority. Can be High, Medium, Low.
Value map to display names:
8188ff24-b5da-4c19-9ebf-c1d8fc2caa75=High |
Array of objects (path_cameras) | |
relatedMap | string Value: "00000000-0000-0000-0000-000000000000" Related map. Defines what map to show in the alarm manager, when alarm is selected. Value map to display names: 00000000-0000-0000-0000-000000000000= |
Array of objects (path_userDefinedEvents) | |
object (path_timeProfiles) Time profile. Defines what TimeProfile to be used when checking when the alarm is enabled. Property is only valid when EnableRule is set to TimeProfile. | |
Array of objects (path_userDefinedEvents) | |
object |
{- "assignableToAdmins": false,
- "category": "97bda9c2-bb15-4106-a59b-e72b193820ee",
- "description": "AlarmDefinition may have a long description",
- "disableEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "enabled": true,
- "enableEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "enableRule": "0",
- "eventType": "0fcb1955-0e80-4fd4-a78a-db47ee89700c",
- "eventTypeGroup": "5946b6fa-44d9-4f4c-82bb-46a17b924265",
- "managementTimeoutEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "managementTimeoutTime": "00:01:00",
- "mapType": "0",
- "name": "Alarm High Priority",
- "owner": "TA Test User (ta\\tatest)",
- "priority": "8188ff24-b5da-4c19-9ebf-c1d8fc2caa75",
- "relatedCameraList": [
- {
- "type": "cameras",
- "id": "abbe8d6b-765d-4a42-8e5c-14a2e5262df1"
}
], - "relatedMap": "00000000-0000-0000-0000-000000000000",
- "sourceList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "timeProfile": {
- "type": "timeProfiles",
- "id": "3a9a3f27-feb0-4781-85ba-0f6e7251eef1"
}, - "triggerEventlist": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "relations": {
- "self": {
- "type": "alarmDefinitions",
- "id": "9094284b-34c3-4e53-a3d7-8e7e3652567b"
}
}
}
{- "data": {
- "assignableToAdmins": false,
- "autoClose": false,
- "category": "97bda9c2-bb15-4106-a59b-e72b193820ee",
- "description": "AlarmDefinition may have a long description",
- "disableEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "displayName": "Alarm High Priority",
- "enabled": true,
- "enableEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "enableRule": "0",
- "eventType": "0fcb1955-0e80-4fd4-a78a-db47ee89700c",
- "eventTypeGroup": "5946b6fa-44d9-4f4c-82bb-46a17b924265",
- "id": "9094284b-34c3-4e53-a3d7-8e7e3652567b",
- "managementTimeoutEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "managementTimeoutTime": "00:01:00",
- "mapType": "0",
- "name": "Alarm High Priority",
- "owner": "TA Test User (ta\\tatest)",
- "priority": "8188ff24-b5da-4c19-9ebf-c1d8fc2caa75",
- "relatedCameraList": [
- {
- "type": "cameras",
- "id": "abbe8d6b-765d-4a42-8e5c-14a2e5262df1"
}
], - "relatedMap": "00000000-0000-0000-0000-000000000000",
- "sourceList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "timeProfile": {
- "type": "timeProfiles",
- "id": "3a9a3f27-feb0-4781-85ba-0f6e7251eef1"
}, - "triggerEventlist": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "relations": {
- "self": {
- "type": "alarmDefinitions",
- "id": "9094284b-34c3-4e53-a3d7-8e7e3652567b"
}
}
}
}
Alarm definitions
id required | string <guid> Example: 9094284b-34c3-4e53-a3d7-8e7e3652567b Id of the object |
assignableToAdmins | boolean Alarm assignable to Administrators. Select this to include users with an administrator role in the Assigned to list |
category | string Enum: "00000000-0000-0000-0000-000000000000" "97bda9c2-bb15-4106-a59b-e72b193820ee" Alarm category. Sets the category of the alarm. Valid options are defined in the Management Client.
Value map to display names:
00000000-0000-0000-0000-000000000000= |
description | string Description |
Array of objects (path_userDefinedEvents) | |
enabled | boolean |
Array of objects (path_userDefinedEvents) | |
enableRule | string Enum: "0" "1" "2" Enable rule. Defines when the alarm can be triggered. Options are: Always, by TimeProfile or by events. When TimeProfile is defined the TimeProfile property must contain a valid TimeProfile path, when enabled by events then both EnablingEvents and DisablingEvents must be defined.
Value map to display names:
0=Always |
eventType | string Value: "0fcb1955-0e80-4fd4-a78a-db47ee89700c" Triggering event type. Defines the type of event that should trigger an alarm, when received from the source defined. Value map to display names: 0fcb1955-0e80-4fd4-a78a-db47ee89700c=External Event |
eventTypeGroup | string Enum: "1eacbcad-d566-4375-834b-cfbe3d937caa" "6b90aee7-e6a5-4b5c-82aa-1686c19afe19" "b1ca6710-f244-4ce2-8daf-662e342c405a" "64d2c24b-a92f-48a0-b9ca-707af7828d67" "5946b6fa-44d9-4f4c-82bb-46a17b924265" "2fb8e979-188e-44cc-b1b7-a7ed9c91e5c0" "00000000-0000-0000-0000-000000000000" "1d3e945c-ecf3-49eb-85b2-3f79b8a14927" "a96692c8-51b1-4f87-b12c-0d3d9cbfc5a4" Triggering event group. Defines a group of events in the same area.
Value map to display names:
1eacbcad-d566-4375-834b-cfbe3d937caa=Device Events |
Array of objects (path_userDefinedEvents) | |
managementTimeoutTime | string Operator action time limit. If operator action is required within a specific time, the time is defined here. Format is like: HH:mm.ss. Valid values are the same as defined in the Management Client, e.g. 1 minute, 5 minutes etc. Default is 1 minute. |
mapType | string Enum: "0" "1" "2" Alarm manager view.
Value map to display names:
0=None |
name | string Name |
owner | string Owner. Defines the initial owner. Should be formatted as Identity.ToString() does, like John Doe (Acme/JD) |
priority | string Enum: "8188ff24-b5da-4c19-9ebf-c1d8fc2caa75" "9ad9338b-22ba-4f2e-bf62-e6948ae99bbf" "34f1f987-6854-44fb-88a5-daa0add1e38a" "903352ab-df68-45a0-a072-e1cf3a86d3fd" Priority. Sets the priority. Can be High, Medium, Low.
Value map to display names:
8188ff24-b5da-4c19-9ebf-c1d8fc2caa75=High |
Array of objects (path_cameras) | |
relatedMap | string Value: "00000000-0000-0000-0000-000000000000" Related map. Defines what map to show in the alarm manager, when alarm is selected. Value map to display names: 00000000-0000-0000-0000-000000000000= |
Array of objects (path_userDefinedEvents) | |
object (path_timeProfiles) Time profile. Defines what TimeProfile to be used when checking when the alarm is enabled. Property is only valid when EnableRule is set to TimeProfile. | |
Array of objects (path_userDefinedEvents) | |
object |
{- "assignableToAdmins": false,
- "category": "97bda9c2-bb15-4106-a59b-e72b193820ee",
- "description": "AlarmDefinition may have a long description",
- "disableEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "enabled": true,
- "enableEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "enableRule": "0",
- "eventType": "0fcb1955-0e80-4fd4-a78a-db47ee89700c",
- "eventTypeGroup": "5946b6fa-44d9-4f4c-82bb-46a17b924265",
- "managementTimeoutEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "managementTimeoutTime": "00:01:00",
- "mapType": "0",
- "name": "Alarm High Priority",
- "owner": "TA Test User (ta\\tatest)",
- "priority": "8188ff24-b5da-4c19-9ebf-c1d8fc2caa75",
- "relatedCameraList": [
- {
- "type": "cameras",
- "id": "abbe8d6b-765d-4a42-8e5c-14a2e5262df1"
}
], - "relatedMap": "00000000-0000-0000-0000-000000000000",
- "sourceList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "timeProfile": {
- "type": "timeProfiles",
- "id": "3a9a3f27-feb0-4781-85ba-0f6e7251eef1"
}, - "triggerEventlist": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "relations": {
- "self": {
- "type": "alarmDefinitions",
- "id": "9094284b-34c3-4e53-a3d7-8e7e3652567b"
}
}
}
{- "data": {
- "assignableToAdmins": false,
- "autoClose": false,
- "category": "97bda9c2-bb15-4106-a59b-e72b193820ee",
- "description": "AlarmDefinition may have a long description",
- "disableEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "displayName": "Alarm High Priority",
- "enabled": true,
- "enableEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "enableRule": "0",
- "eventType": "0fcb1955-0e80-4fd4-a78a-db47ee89700c",
- "eventTypeGroup": "5946b6fa-44d9-4f4c-82bb-46a17b924265",
- "id": "9094284b-34c3-4e53-a3d7-8e7e3652567b",
- "managementTimeoutEventList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "managementTimeoutTime": "00:01:00",
- "mapType": "0",
- "name": "Alarm High Priority",
- "owner": "TA Test User (ta\\tatest)",
- "priority": "8188ff24-b5da-4c19-9ebf-c1d8fc2caa75",
- "relatedCameraList": [
- {
- "type": "cameras",
- "id": "abbe8d6b-765d-4a42-8e5c-14a2e5262df1"
}
], - "relatedMap": "00000000-0000-0000-0000-000000000000",
- "sourceList": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "timeProfile": {
- "type": "timeProfiles",
- "id": "3a9a3f27-feb0-4781-85ba-0f6e7251eef1"
}, - "triggerEventlist": [
- {
- "type": "userDefinedEvents",
- "id": "1fee4fca-db4d-4747-b793-7fc6a6f81fa1"
}
], - "relations": {
- "self": {
- "type": "alarmDefinitions",
- "id": "9094284b-34c3-4e53-a3d7-8e7e3652567b"
}
}
}
}
{- "array": [
- {
- "customFields": "string",
- "displayName": "Unlisted license plate",
- "id": "55ae8798-1e4a-45c9-939a-d9a9ea444610",
- "name": "Unlisted license plate",
- "registrationNumbers": "string",
- "triggerEventList": [
- {
- "type": "outputs",
- "id": "aa25e56d-5065-4449-beed-bb724fb55ecc"
}
], - "relations": {
- "self": {
- "type": "lprMatchLists",
- "id": "55ae8798-1e4a-45c9-939a-d9a9ea444610"
}
}
}
]
}
Add new lprMatchLists
customFields | string <list-of-items> The semicolon separated list of names of custom fields |
name | string Name |
Array of objects (path_outputs) | |
object |
{- "customFields": "string",
- "name": "Unlisted license plate",
- "triggerEventList": [
- {
- "type": "outputs",
- "id": "aa25e56d-5065-4449-beed-bb724fb55ecc"
}
], - "relations": {
- "self": {
- "type": "lprMatchLists",
- "id": "55ae8798-1e4a-45c9-939a-d9a9ea444610"
}
}
}
{- "result": {
- "customFields": "string",
- "displayName": "Unlisted license plate",
- "id": "55ae8798-1e4a-45c9-939a-d9a9ea444610",
- "name": "Unlisted license plate",
- "registrationNumbers": "string",
- "triggerEventList": [
- {
- "type": "outputs",
- "id": "aa25e56d-5065-4449-beed-bb724fb55ecc"
}
], - "relations": {
- "self": {
- "type": "lprMatchLists",
- "id": "55ae8798-1e4a-45c9-939a-d9a9ea444610"
}
}
}
}
Get specific object of lprMatchLists
id required | string <guid> Example: 55ae8798-1e4a-45c9-939a-d9a9ea444610 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "customFields": "string",
- "displayName": "Unlisted license plate",
- "id": "55ae8798-1e4a-45c9-939a-d9a9ea444610",
- "name": "Unlisted license plate",
- "registrationNumbers": "string",
- "triggerEventList": [
- {
- "type": "outputs",
- "id": "aa25e56d-5065-4449-beed-bb724fb55ecc"
}
], - "relations": {
- "self": {
- "type": "lprMatchLists",
- "id": "55ae8798-1e4a-45c9-939a-d9a9ea444610"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Update all fields on lprMatchLists
id required | string <guid> Example: 55ae8798-1e4a-45c9-939a-d9a9ea444610 Id of the object |
customFields | string <list-of-items> The semicolon separated list of names of custom fields |
name | string Name |
Array of objects (path_outputs) | |
object |
{- "customFields": "string",
- "name": "Unlisted license plate",
- "triggerEventList": [
- {
- "type": "outputs",
- "id": "aa25e56d-5065-4449-beed-bb724fb55ecc"
}
], - "relations": {
- "self": {
- "type": "lprMatchLists",
- "id": "55ae8798-1e4a-45c9-939a-d9a9ea444610"
}
}
}
{- "data": {
- "customFields": "string",
- "displayName": "Unlisted license plate",
- "id": "55ae8798-1e4a-45c9-939a-d9a9ea444610",
- "name": "Unlisted license plate",
- "registrationNumbers": "string",
- "triggerEventList": [
- {
- "type": "outputs",
- "id": "aa25e56d-5065-4449-beed-bb724fb55ecc"
}
], - "relations": {
- "self": {
- "type": "lprMatchLists",
- "id": "55ae8798-1e4a-45c9-939a-d9a9ea444610"
}
}
}
}
Update provided fields on lprMatchLists
id required | string <guid> Example: 55ae8798-1e4a-45c9-939a-d9a9ea444610 Id of the object |
customFields | string <list-of-items> The semicolon separated list of names of custom fields |
name | string Name |
Array of objects (path_outputs) | |
object |
{- "customFields": "string",
- "name": "Unlisted license plate",
- "triggerEventList": [
- {
- "type": "outputs",
- "id": "aa25e56d-5065-4449-beed-bb724fb55ecc"
}
], - "relations": {
- "self": {
- "type": "lprMatchLists",
- "id": "55ae8798-1e4a-45c9-939a-d9a9ea444610"
}
}
}
{- "data": {
- "customFields": "string",
- "displayName": "Unlisted license plate",
- "id": "55ae8798-1e4a-45c9-939a-d9a9ea444610",
- "name": "Unlisted license plate",
- "registrationNumbers": "string",
- "triggerEventList": [
- {
- "type": "outputs",
- "id": "aa25e56d-5065-4449-beed-bb724fb55ecc"
}
], - "relations": {
- "self": {
- "type": "lprMatchLists",
- "id": "55ae8798-1e4a-45c9-939a-d9a9ea444610"
}
}
}
}
Perform a task
id required | string <guid> Example: 55ae8798-1e4a-45c9-939a-d9a9ea444610 Id of the object |
task required | string Example: task=MethodIdDeleteAllRegistrationNumbers task=MethodIdGetCustomFieldsForRegistrationNumber, or task=MethodIdGetRegistrationNumbersInfo, or task=MethodIdAddOrEditRegistrationNumbersInfo, or task=MethodIdDeleteRegistrationNumbers, or task=MethodIdDeleteAllRegistrationNumbers MethodIdGetCustomFieldsForRegistrationNumber - Get custom fields MethodIdAddOrEditRegistrationNumbersInfo - Add or edit data for registration numbers MethodIdDeleteRegistrationNumbers - Delete registration numbers |
registrationNumber | string Registration number |
{- "registrationNumber": "string"
}
{- "result": {
- "displayName": "Unlisted license plate",
- "registrationNumber": "string"
}
}
{- "array": [
- {
- "dataVersion": 1,
- "displayName": "Incident properties",
- "displayOnGisMap": true,
- "id": "c5d5ab61-9eee-425a-96e9-62e08cac6b0f",
- "kindType": "ITEM",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "mipItems": [
- {
- "__Encrypt": false,
- "displayName": "Incident projects",
- "enabled": true,
- "GisPoint": "POINT EMPTY",
- "Id": "77F8F2A9-9DE8-4048-8D63-26BF44DCCED1",
- "LastModified": "2024-08-18T07:12:54.6400000Z",
- "mipItems": [
- { }
], - "Name": "Incident projects",
- "relations": {
- "self": {
- "type": "mipItems",
- "id": "9f44adfa-ceab-427a-b669-fc79cbcf04c9"
}, - "parent": {
- "type": "mipKinds",
- "id": "c5d5ab61-9eee-425a-96e9-62e08cac6b0f"
}
}
}
], - "modifiedUser": "TA\\TATest",
- "name": "Incident properties",
- "parentKind": "00000000-0000-0000-0000-000000000000",
- "pluginId": "6053b0b4-3e97-4a86-8e46-d1a9ce807ed1",
- "pluginName": "XProtect Incident Manager",
- "securityAction": "string",
- "relations": {
- "self": {
- "type": "mipKinds",
- "id": "c5d5ab61-9eee-425a-96e9-62e08cac6b0f"
}
}
}
]
}
MIP kinds, or perform a task
displayOnGisMap | boolean Display on GIS map (if supported by plugin) |
kindType | string Enum: "ITEM" "OPTION" Define content type ITEM or OPTION.
Value map to display names:
ITEM=Item |
name | string Name |
parentKind | string Parent kind |
pluginName | string Plugin name |
securityAction | string Comma separated list of action IDs . Contains a comma separated list of ActionIds. If security is not to be used, this field should be set to String.Empty. Note that when used, the GENERIC_READ , GENERIC_WRITE and ADMIN_SECURITY actionIds should always be available. |
object |
{- "displayOnGisMap": true,
- "kindType": "ITEM",
- "name": "Incident properties",
- "parentKind": "00000000-0000-0000-0000-000000000000",
- "pluginName": "XProtect Incident Manager",
- "securityAction": "string",
- "relations": {
- "self": {
- "type": "mipKinds",
- "id": "c5d5ab61-9eee-425a-96e9-62e08cac6b0f"
}
}
}
{- "result": {
- "displayName": "MIP kinds",
- "optionId": "00000000-0000-0000-0000-000000000000",
- "userPrivate": false
}
}
MIP kinds
id required | string <guid> Example: c5d5ab61-9eee-425a-96e9-62e08cac6b0f Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "dataVersion": 1,
- "displayName": "Incident properties",
- "displayOnGisMap": true,
- "id": "c5d5ab61-9eee-425a-96e9-62e08cac6b0f",
- "kindType": "ITEM",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "mipItems": [
- {
- "__Encrypt": false,
- "displayName": "Incident projects",
- "enabled": true,
- "GisPoint": "POINT EMPTY",
- "Id": "77F8F2A9-9DE8-4048-8D63-26BF44DCCED1",
- "LastModified": "2024-08-18T07:12:54.6400000Z",
- "mipItems": [
- { }
], - "Name": "Incident projects",
- "relations": {
- "self": {
- "type": "mipItems",
- "id": "9f44adfa-ceab-427a-b669-fc79cbcf04c9"
}, - "parent": {
- "type": "mipKinds",
- "id": "c5d5ab61-9eee-425a-96e9-62e08cac6b0f"
}
}
}
], - "modifiedUser": "TA\\TATest",
- "name": "Incident properties",
- "parentKind": "00000000-0000-0000-0000-000000000000",
- "pluginId": "6053b0b4-3e97-4a86-8e46-d1a9ce807ed1",
- "pluginName": "XProtect Incident Manager",
- "securityAction": "string",
- "relations": {
- "self": {
- "type": "mipKinds",
- "id": "c5d5ab61-9eee-425a-96e9-62e08cac6b0f"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
MIP kinds
id required | string <guid> Example: c5d5ab61-9eee-425a-96e9-62e08cac6b0f Id of the object |
displayOnGisMap | boolean Display on GIS map (if supported by plugin) |
kindType | string Enum: "ITEM" "OPTION" Define content type ITEM or OPTION.
Value map to display names:
ITEM=Item |
name | string Name |
parentKind | string Parent kind |
pluginName | string Plugin name |
securityAction | string Comma separated list of action IDs . Contains a comma separated list of ActionIds. If security is not to be used, this field should be set to String.Empty. Note that when used, the GENERIC_READ , GENERIC_WRITE and ADMIN_SECURITY actionIds should always be available. |
object |
{- "displayOnGisMap": true,
- "kindType": "ITEM",
- "name": "Incident properties",
- "parentKind": "00000000-0000-0000-0000-000000000000",
- "pluginName": "XProtect Incident Manager",
- "securityAction": "string",
- "relations": {
- "self": {
- "type": "mipKinds",
- "id": "c5d5ab61-9eee-425a-96e9-62e08cac6b0f"
}
}
}
{- "data": {
- "dataVersion": 1,
- "displayName": "Incident properties",
- "displayOnGisMap": true,
- "id": "c5d5ab61-9eee-425a-96e9-62e08cac6b0f",
- "kindType": "ITEM",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "mipItems": [
- {
- "__Encrypt": false,
- "displayName": "Incident projects",
- "enabled": true,
- "GisPoint": "POINT EMPTY",
- "Id": "77F8F2A9-9DE8-4048-8D63-26BF44DCCED1",
- "LastModified": "2024-08-18T07:12:54.6400000Z",
- "mipItems": [
- { }
], - "Name": "Incident projects",
- "relations": {
- "self": {
- "type": "mipItems",
- "id": "9f44adfa-ceab-427a-b669-fc79cbcf04c9"
}, - "parent": {
- "type": "mipKinds",
- "id": "c5d5ab61-9eee-425a-96e9-62e08cac6b0f"
}
}
}
], - "modifiedUser": "TA\\TATest",
- "name": "Incident properties",
- "parentKind": "00000000-0000-0000-0000-000000000000",
- "pluginId": "6053b0b4-3e97-4a86-8e46-d1a9ce807ed1",
- "pluginName": "XProtect Incident Manager",
- "securityAction": "string",
- "relations": {
- "self": {
- "type": "mipKinds",
- "id": "c5d5ab61-9eee-425a-96e9-62e08cac6b0f"
}
}
}
}
MIP kinds
id required | string <guid> Example: c5d5ab61-9eee-425a-96e9-62e08cac6b0f Id of the object |
displayOnGisMap | boolean Display on GIS map (if supported by plugin) |
kindType | string Enum: "ITEM" "OPTION" Define content type ITEM or OPTION.
Value map to display names:
ITEM=Item |
name | string Name |
parentKind | string Parent kind |
pluginName | string Plugin name |
securityAction | string Comma separated list of action IDs . Contains a comma separated list of ActionIds. If security is not to be used, this field should be set to String.Empty. Note that when used, the GENERIC_READ , GENERIC_WRITE and ADMIN_SECURITY actionIds should always be available. |
object |
{- "displayOnGisMap": true,
- "kindType": "ITEM",
- "name": "Incident properties",
- "parentKind": "00000000-0000-0000-0000-000000000000",
- "pluginName": "XProtect Incident Manager",
- "securityAction": "string",
- "relations": {
- "self": {
- "type": "mipKinds",
- "id": "c5d5ab61-9eee-425a-96e9-62e08cac6b0f"
}
}
}
{- "data": {
- "dataVersion": 1,
- "displayName": "Incident properties",
- "displayOnGisMap": true,
- "id": "c5d5ab61-9eee-425a-96e9-62e08cac6b0f",
- "kindType": "ITEM",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "mipItems": [
- {
- "__Encrypt": false,
- "displayName": "Incident projects",
- "enabled": true,
- "GisPoint": "POINT EMPTY",
- "Id": "77F8F2A9-9DE8-4048-8D63-26BF44DCCED1",
- "LastModified": "2024-08-18T07:12:54.6400000Z",
- "mipItems": [
- { }
], - "Name": "Incident projects",
- "relations": {
- "self": {
- "type": "mipItems",
- "id": "9f44adfa-ceab-427a-b669-fc79cbcf04c9"
}, - "parent": {
- "type": "mipKinds",
- "id": "c5d5ab61-9eee-425a-96e9-62e08cac6b0f"
}
}
}
], - "modifiedUser": "TA\\TATest",
- "name": "Incident properties",
- "parentKind": "00000000-0000-0000-0000-000000000000",
- "pluginId": "6053b0b4-3e97-4a86-8e46-d1a9ce807ed1",
- "pluginName": "XProtect Incident Manager",
- "securityAction": "string",
- "relations": {
- "self": {
- "type": "mipKinds",
- "id": "c5d5ab61-9eee-425a-96e9-62e08cac6b0f"
}
}
}
}
MIP kinds
id required | string <guid> Example: c5d5ab61-9eee-425a-96e9-62e08cac6b0f Id of the mipKind object |
{- "array": [
- {
- "__Encrypt": false,
- "displayName": "Incident projects",
- "enabled": true,
- "GisPoint": "POINT EMPTY",
- "Id": "77F8F2A9-9DE8-4048-8D63-26BF44DCCED1",
- "LastModified": "2024-08-18T07:12:54.6400000Z",
- "mipItems": [
- { }
], - "Name": "Incident projects",
- "relations": {
- "self": {
- "type": "mipItems",
- "id": "9f44adfa-ceab-427a-b669-fc79cbcf04c9"
}, - "parent": {
- "type": "mipKinds",
- "id": "c5d5ab61-9eee-425a-96e9-62e08cac6b0f"
}
}
}
]
}
MIP kinds
id required | string <guid> Example: c5d5ab61-9eee-425a-96e9-62e08cac6b0f Id of the mipKind object |
__Encrypt | boolean Encrypt |
enabled | boolean |
GisPoint | string Gis point |
LastModified | string LastModified |
Name | string Name |
object |
{- "__Encrypt": false,
- "enabled": true,
- "GisPoint": "POINT EMPTY",
- "LastModified": "2024-08-18T07:12:54.6400000Z",
- "Name": "Incident projects",
- "relations": {
- "self": {
- "type": "mipItems",
- "id": "9f44adfa-ceab-427a-b669-fc79cbcf04c9"
}, - "parent": {
- "type": "mipKinds",
- "id": "c5d5ab61-9eee-425a-96e9-62e08cac6b0f"
}
}
}
{- "result": {
- "__Encrypt": false,
- "displayName": "Incident projects",
- "enabled": true,
- "GisPoint": "POINT EMPTY",
- "Id": "77F8F2A9-9DE8-4048-8D63-26BF44DCCED1",
- "LastModified": "2024-08-18T07:12:54.6400000Z",
- "mipItems": [
- { }
], - "Name": "Incident projects",
- "relations": {
- "self": {
- "type": "mipItems",
- "id": "9f44adfa-ceab-427a-b669-fc79cbcf04c9"
}, - "parent": {
- "type": "mipKinds",
- "id": "c5d5ab61-9eee-425a-96e9-62e08cac6b0f"
}
}
}
}
MIP kinds
idParent required | string <guid> Example: c5d5ab61-9eee-425a-96e9-62e08cac6b0f Id of parent object |
id required | string <guid> Example: c5d5ab61-9eee-425a-96e9-62e08cac6b0f Id of the object |
{- "array": [
- {
- "__Encrypt": false,
- "displayName": "Incident projects",
- "enabled": true,
- "GisPoint": "POINT EMPTY",
- "Id": "77F8F2A9-9DE8-4048-8D63-26BF44DCCED1",
- "LastModified": "2024-08-18T07:12:54.6400000Z",
- "mipItems": [
- { }
], - "Name": "Incident projects",
- "relations": {
- "self": {
- "type": "mipItems",
- "id": "9f44adfa-ceab-427a-b669-fc79cbcf04c9"
}, - "parent": {
- "type": "mipKinds",
- "id": "c5d5ab61-9eee-425a-96e9-62e08cac6b0f"
}
}
}
]
}
MIP kinds
idParent required | string <guid> Example: c5d5ab61-9eee-425a-96e9-62e08cac6b0f Id of parent object |
id required | string <guid> Example: c5d5ab61-9eee-425a-96e9-62e08cac6b0f Id of the object |
{- "state": "Success"
}
Get array of all enabled Camera. To include disabled items add ?disabled to the request.
disabled | boolean Add this parameter to have disabled items included |
{- "array": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": "fisheyeLens",
- "id": "d0ae3832-344b-4886-a699-3a74d2465a85"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": "motionDetections",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": "privacyProtections",
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": "ptzPresets",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": true,
- "displayName": "Video stream 1",
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Get specific object of Camera
id required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": "fisheyeLens",
- "id": "d0ae3832-344b-4886-a699-3a74d2465a85"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": "motionDetections",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": "privacyProtections",
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": "ptzPresets",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": true,
- "displayName": "Video stream 1",
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Update all fields on Camera
id required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the object |
coverageDepth | number <double> Depth. Indicate the viewing depth of the device. |
coverageDirection | number <double> Direction. Indicate the viewing direction of the device. |
coverageFieldOfView | number <double> Field of view. Indicate the field of view of the device. |
description | string Description |
edgeStorageEnabled | boolean Remote recording enabled |
edgeStoragePlaybackEnabled | boolean Remote recording playback |
enabled | boolean |
gisPoint | string Device position. Device position. Position of device in longitude, latitude and potentially altitude.
The format is "POINT (LONGITUDE LATITUDE)" and if you want to clear the coordinates, the value to use is "POINT EMPTY".
Examples: "POINT (55.656932878513 12.3763545558449)" "POINT EMPTY" |
icon | integer Icon identifier. The relevant device icon to show in Smart Map. Values between 0-9 for cameras, 0-6 for input devices, 0-3 for microphones and 0-3 for outputs. If invalid value is given, Smart Map have a fallback icon. |
manualRecordingTimeoutEnabled | boolean Manual recording timeout enabled |
manualRecordingTimeoutMinutes | integer Manual recording timeout in minutes |
name | string Name |
prebufferEnabled | boolean Prebuffer enabled |
prebufferInMemory | boolean Prebuffer in memory |
prebufferSeconds | integer Prebuffer seconds |
recordingEnabled | boolean Recording enabled |
recordingFramerate | number <double> Recording frame rate |
object (path_storages) Path. Contains the path to the related recording storage | |
recordKeyframesOnly | boolean Record keyframes only |
recordOnRelatedDevices | boolean Record on related devices |
shortName | string Short name. Used as name in the user interface where appropriate. |
object |
{- "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "description": "Camera may have a long description",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "icon": 0,
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "MultiStream Camera",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "shortName": "string",
- "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
{- "data": {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": "fisheyeLens",
- "id": "d0ae3832-344b-4886-a699-3a74d2465a85"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": "motionDetections",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": "privacyProtections",
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": "ptzPresets",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": true,
- "displayName": "Video stream 1",
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
}
Update provided fields on Camera
id required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the object |
coverageDepth | number <double> Depth. Indicate the viewing depth of the device. |
coverageDirection | number <double> Direction. Indicate the viewing direction of the device. |
coverageFieldOfView | number <double> Field of view. Indicate the field of view of the device. |
description | string Description |
edgeStorageEnabled | boolean Remote recording enabled |
edgeStoragePlaybackEnabled | boolean Remote recording playback |
enabled | boolean |
gisPoint | string Device position. Device position. Position of device in longitude, latitude and potentially altitude.
The format is "POINT (LONGITUDE LATITUDE)" and if you want to clear the coordinates, the value to use is "POINT EMPTY".
Examples: "POINT (55.656932878513 12.3763545558449)" "POINT EMPTY" |
icon | integer Icon identifier. The relevant device icon to show in Smart Map. Values between 0-9 for cameras, 0-6 for input devices, 0-3 for microphones and 0-3 for outputs. If invalid value is given, Smart Map have a fallback icon. |
manualRecordingTimeoutEnabled | boolean Manual recording timeout enabled |
manualRecordingTimeoutMinutes | integer Manual recording timeout in minutes |
name | string Name |
prebufferEnabled | boolean Prebuffer enabled |
prebufferInMemory | boolean Prebuffer in memory |
prebufferSeconds | integer Prebuffer seconds |
recordingEnabled | boolean Recording enabled |
recordingFramerate | number <double> Recording frame rate |
object (path_storages) Path. Contains the path to the related recording storage | |
recordKeyframesOnly | boolean Record keyframes only |
recordOnRelatedDevices | boolean Record on related devices |
shortName | string Short name. Used as name in the user interface where appropriate. |
object |
{- "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "description": "Camera may have a long description",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "icon": 0,
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "MultiStream Camera",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "shortName": "string",
- "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
{- "data": {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": "fisheyeLens",
- "id": "d0ae3832-344b-4886-a699-3a74d2465a85"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": "motionDetections",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": "privacyProtections",
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": "ptzPresets",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": true,
- "displayName": "Video stream 1",
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
}
Perform a task
id required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the object |
task required | string Example: task=SetPtzAbsolutePosition task=GetOtherRecordingServersWithMedia, or task=GetOtherRecordingStoragesWithMedia, or task=RetrieveEdgeStorage, or task=TruncateStorage, or task=TruncateStorageOnOtherRecordingServer, or task=ChangeDeviceRecordingStorage, or task=ChangeSecurityPermissions, or task=GetPtzAbsolutePosition, or task=SetPtzAbsolutePosition GetOtherRecordingServersWithMedia - Get recording servers with media GetOtherRecordingStoragesWithMedia - [DEPRECATED] This function is deprecated and should not be used. As an alternative, use the value of the 'RecordingStorage' property to get the configured recording storage for the device. RetrieveEdgeStorage - Retrieve recordings from edge storage TruncateStorage - Delete all recordings for device on storage TruncateStorageOnOtherRecordingServer - Delete all recordings for device on another recording server ChangeDeviceRecordingStorage - Change storage for device ChangeSecurityPermissions - Edit permissions GetPtzAbsolutePosition - Get absolute position SetPtzAbsolutePosition - Set absolute position |
endTime | string <date-time-fraction> End time |
startTime | string <date-time-fraction> Start time |
{- "endTime": "2022-05-23T09:24:58.9130000+02:00",
- "startTime": "2022-05-23T09:24:58.9130000+02:00"
}
{- "result": {
- "state": "Success",
- "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": "fisheyeLens",
- "id": "d0ae3832-344b-4886-a699-3a74d2465a85"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": "motionDetections",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": "privacyProtections",
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": "ptzPresets",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": true,
- "displayName": "Video stream 1",
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "storages": [
- {
- "archiveStorages": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "displayName": "ArchiveSchedule",
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": "archiveStorages",
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d"
}, - "parent": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}
}
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Storage may have a long description",
- "diskPath": "c:\\encryptedStorage",
- "displayName": "encryptedStorage",
- "encryptionMethod": "Light",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949",
- "isDefault": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "name": "encryptedStorage",
- "retainMinutes": 30,
- "signing": false,
- "relations": {
- "self": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "recordingServers": [
- {
- "activeWebServerUri": "string",
- "description": "RecordingServer may have a long description",
- "displayName": "DKTA-0810SK0016",
- "enabled": true,
- "hardware": [
- {
- "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": null,
- "enabled": null,
- "fisheyeFieldOfView": null,
- "orientation": null,
- "registeredPanomorphLens": null,
- "registeredPanomorphLensNumber": null,
- "relations": { }
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": null,
- "displayName": null,
- "enabled": null,
- "excludeRegions": null,
- "generateMotionMetadata": null,
- "gridSize": null,
- "hardwareAccelerationMode": null,
- "id": null,
- "keyframesOnly": null,
- "manualSensitivity": null,
- "manualSensitivityEnabled": null,
- "processTime": null,
- "threshold": null,
- "useExcludeRegions": null,
- "relations": { }
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": null,
- "description": null,
- "displayName": null,
- "endPresetId": null,
- "endSpeed": null,
- "endTransitionTime": null,
- "id": null,
- "initSpeed": null,
- "initTransitionTime": null,
- "name": null,
- "patrollingEntry": [ ],
- "relations": { }
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": null,
- "enabled": null,
- "id": null,
- "privacyMaskXml": null,
- "relations": { }
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": null,
- "description": null,
- "devicePreset": null,
- "devicePresetInternalId": null,
- "displayName": null,
- "id": null,
- "locked": null,
- "name": null,
- "pan": null,
- "tilt": null,
- "zoom": null,
- "relations": { }
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": null,
- "stream": [ ],
- "relations": { }
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Hardware may have a long description",
- "displayName": "MultiStream Hardware",
- "enabled": true,
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "hardwareDriverPath": {
- "type": "hardwareDrivers",
- "id": "699dd024-4119-4e3d-b7dd-e2b371d18d79"
}, - "hardwareDriverSettings": [
- {
- "displayName": "Settings",
- "hardwarePtz": {
- "displayName": "Pan-Tilt-Zoom",
- "ptzUsePtzDeviceID": true
}, - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "hardwarePtzSettings": [
- {
- "displayName": "PTZ",
- "hardwarePtzDeviceSettings": [
- {
- "displayName": null,
- "ptzCOMPort": null,
- "ptzDeviceID": null,
- "ptzEnabled": null,
- "ptzProtocol": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "id": "965c4a97-449a-4b4b-b772-e50e7b44f700",
- "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "model": "StableFPS_T800",
- "name": "MultiStream Hardware",
- "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "passwordLastModified": "2022-05-23T09:24:58.9130000+02:00",
- "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "userName": "admin",
- "relations": {
- "self": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "hardwareDrivers": [
- {
- "displayName": "Mobotix M/D/V/S series",
- "driverRevision": "1.62",
- "driverType": "DevicePack",
- "driverVersion": "DevicePack: 13.2a, Device Pack, Build: Unknown",
- "groupName": "Mobotix",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97",
- "name": "Mobotix M/D/V/S series",
- "number": 86,
- "useCount": 0,
- "relations": {
- "self": {
- "type": "hardwareDrivers",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "hostName": "dkta-0810sk0016.ta.rd.local",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "multicastServerAddress": "0.0.0.0",
- "name": "DKTA-0810SK0016",
- "portNumber": 7563,
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "recordingServerFailovers": [
- {
- "displayName": "Failover settings",
- "failoverPort": 11000,
- "hotStandby": "FailoverRecorder[639DEDEB-FFA4-4449-8588-826061E895FF]",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9",
- "primaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "secondaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "relations": {
- "self": {
- "type": "recordingServerFailovers",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "recordingServerMulticasts": [
- {
- "displayName": "Multicast",
- "enabled": true,
- "id": "536c696f-29c3-4be8-8e35-be5720192620",
- "iPAddressEnd": "232.100.1.0",
- "iPAddressStart": "232.100.1.0",
- "MTU": "1500",
- "portRangeEnd": 47199,
- "portRangeStart": 47100,
- "TTL": "32",
- "relations": {
- "self": {
- "type": "recordingServerMulticasts",
- "id": "536c696f-29c3-4be8-8e35-be5720192620"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "shutdownOnStorageFailure": false,
- "storages": [
- {
- "archiveStorages": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "displayName": "ArchiveSchedule",
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Storage may have a long description",
- "diskPath": "c:\\encryptedStorage",
- "displayName": "encryptedStorage",
- "encryptionMethod": "Light",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949",
- "isDefault": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "name": "encryptedStorage",
- "retainMinutes": 30,
- "signing": false,
- "relations": {
- "self": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "synchronizationTime": -1,
- "timeZoneName": "Romance Standard Time",
- "version": "24.2.12065.1",
- "relations": {
- "self": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "tasks": [
- {
- "result": {
- "progress": "25",
- "errorCode": "61002",
- "errorText": "Something went wrong",
- "state": "Error",
- "path": "hardware/F29FEF78-E5EA-4DCF-B654-8F76886DD873"
}
}
]
}
}
Get array of all clientSettings
id required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the camera object |
{- "array": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get specific clientSettings
idParent required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the camera object |
id required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the clientSetting object |
{- "array": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get array of all customProperties
id required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the camera object |
{- "array": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get specific customProperties
idParent required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the camera object |
id required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the customPropertie object |
{- "array": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get array of all settings
id required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the camera object |
{- "array": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get array of all fisheyeLens
id required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the camera object |
{- "array": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": "fisheyeLens",
- "id": "d0ae3832-344b-4886-a699-3a74d2465a85"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get specific fisheyeLens
idParent required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the camera object |
id required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the fisheyeLen object |
{- "array": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": "fisheyeLens",
- "id": "d0ae3832-344b-4886-a699-3a74d2465a85"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get array of all hardwareDeviceEvents
id required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the camera object |
{- "array": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get specific hardwareDeviceEvents
idParent required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the camera object |
id required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the hardwareDeviceEvent object |
{- "array": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get array of all motionDetections
id required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the camera object |
{- "array": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": "motionDetections",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get specific motionDetections
idParent required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the camera object |
id required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the motionDetection object |
{- "array": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": "motionDetections",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get array of all patrollingProfiles
id required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the camera object |
{- "array": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Add a patrollingProfile to a cameras
id required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the camera object |
customizeTransitions | boolean Customize transitions. Indicates if transition from one preset to another should to be configured |
description | string Description |
endPresetId | string Enum: "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab" "6ed2365c-2b05-4003-ad91-ed183b0b9b3e" End position: Preset. .
Value map to display names:
efc9e3f4-20fe-4dcf-abd1-176d43cd74ab=Ptz Preset 1 |
endSpeed | number <double> End position: Speed. A value between 0.0 and 1.0, where 1.0 is full speed |
endTransitionTime | number <double> End position: Transition time. The number of seconds it is expected to take for the movement to complete |
initSpeed | number <double> Initial transition: Speed. A value between 0.0 and 1.0, where 1.0 is full speed |
initTransitionTime | number <double> Initial transition: Transition time. The number of seconds it is expected to take for the movement to complete |
name | string Name |
Array of objects (patrollingEntry) | |
object |
{- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
{- "result": {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
}
Get array of all privacyProtections
id required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the camera object |
{- "array": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": "privacyProtections",
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get specific privacyProtections
idParent required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the camera object |
id required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the privacyProtection object |
{- "array": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": "privacyProtections",
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get array of all ptzPresets
id required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the object |
{- "array": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": "ptzPresets",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Add a ptzPreset to a cameras, or perform a task
id required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the object |
description | string Description |
locked | boolean Locked |
name | string Name |
pan | number <double> Pan |
tilt | number <double> Tilt |
zoom | number <double> Zoom |
object |
{- "description": "PtzPreset may have a long description",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": "ptzPresets",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
{- "result": {
- "displayName": "PTZ presets",
- "itemSelection": "PtzPreset[EFC9E3F4-20FE-4DCF-ABD1-176D43CD74AB]"
}
}
Get specific ptzPresets
idParent required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of parent object |
id required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the object |
{- "array": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": "ptzPresets",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Remove a ptzPreset from a cameras
idParent required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of parent object |
id required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the object |
{- "state": "Success"
}
Perform a task
idParent required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of parent object |
id required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the object |
task required | string Example: task=Goto task=Goto Goto - Goto preset |
{- "result": {
- "state": "Success"
}
}
Get array of all streams
id required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the camera object |
{- "array": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": true,
- "displayName": "Video stream 1",
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Remove a patrollingProfile from a cameras
idParent required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of parent object |
id required | string <guid> Example: 638bc8f1-cf28-4329-b8e6-5bba37bdb48f Id of the object |
{- "state": "Success"
}
Settings
id required | string <guid> Example: 5cce248d-79a0-453f-ae39-4b85ec0a5d98 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Settings
id required | string <guid> Example: 5cce248d-79a0-453f-ae39-4b85ec0a5d98 Id of the object |
object (ptz_childItem) | |
object (ptzSessionTimeouts_childItem) | |
object |
{- "ptz": {
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzProtocol": "1"
}, - "ptzSessionTimeouts": {
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
{- "data": {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
}
Settings
id required | string <guid> Example: 5cce248d-79a0-453f-ae39-4b85ec0a5d98 Id of the object |
object (ptz_childItem) | |
object (ptzSessionTimeouts_childItem) | |
object |
{- "ptz": {
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzProtocol": "1"
}, - "ptzSessionTimeouts": {
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
{- "data": {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
}
Get array of all enabled Hardware. To include disabled items add ?disabled to the request.
disabled | boolean Add this parameter to have disabled items included |
{- "array": [
- {
- "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": "fisheyeLens",
- "id": "d0ae3832-344b-4886-a699-3a74d2465a85"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": "motionDetections",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": "privacyProtections",
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": "ptzPresets",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": true,
- "displayName": "Video stream 1",
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Hardware may have a long description",
- "displayName": "MultiStream Hardware",
- "enabled": true,
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "hardwareDriverPath": {
- "type": "hardwareDrivers",
- "id": "699dd024-4119-4e3d-b7dd-e2b371d18d79"
}, - "hardwareDriverSettings": [
- {
- "displayName": "Settings",
- "hardwarePtz": {
- "displayName": "Pan-Tilt-Zoom",
- "ptzUsePtzDeviceID": true
}, - "relations": {
- "self": {
- "type": "hardwareDriverSettings",
- "id": "cc12d372-a0fc-4d00-a816-2894a15f11ef"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "hardwarePtzSettings": [
- {
- "displayName": "PTZ",
- "hardwarePtzDeviceSettings": [
- {
- "displayName": "Test Driver Camera 1",
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzEnabled": false,
- "ptzProtocol": "1"
}
], - "relations": {
- "self": {
- "type": "hardwarePtzSettings",
- "id": "67e0b238-efaa-4c52-bcf4-52bcb874cfbd"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "id": "965c4a97-449a-4b4b-b772-e50e7b44f700",
- "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "model": "StableFPS_T800",
- "name": "MultiStream Hardware",
- "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "passwordLastModified": "2022-05-23T09:24:58.9130000+02:00",
- "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "userName": "admin",
- "relations": {
- "self": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
]
}
Get specific object of Hardware
id required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": "fisheyeLens",
- "id": "d0ae3832-344b-4886-a699-3a74d2465a85"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": "motionDetections",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": "privacyProtections",
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": "ptzPresets",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": true,
- "displayName": "Video stream 1",
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Hardware may have a long description",
- "displayName": "MultiStream Hardware",
- "enabled": true,
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "hardwareDriverPath": {
- "type": "hardwareDrivers",
- "id": "699dd024-4119-4e3d-b7dd-e2b371d18d79"
}, - "hardwareDriverSettings": [
- {
- "displayName": "Settings",
- "hardwarePtz": {
- "displayName": "Pan-Tilt-Zoom",
- "ptzUsePtzDeviceID": true
}, - "relations": {
- "self": {
- "type": "hardwareDriverSettings",
- "id": "cc12d372-a0fc-4d00-a816-2894a15f11ef"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "hardwarePtzSettings": [
- {
- "displayName": "PTZ",
- "hardwarePtzDeviceSettings": [
- {
- "displayName": "Test Driver Camera 1",
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzEnabled": false,
- "ptzProtocol": "1"
}
], - "relations": {
- "self": {
- "type": "hardwarePtzSettings",
- "id": "67e0b238-efaa-4c52-bcf4-52bcb874cfbd"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "id": "965c4a97-449a-4b4b-b772-e50e7b44f700",
- "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "model": "StableFPS_T800",
- "name": "MultiStream Hardware",
- "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "passwordLastModified": "2022-05-23T09:24:58.9130000+02:00",
- "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "userName": "admin",
- "relations": {
- "self": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Update all fields on Hardware
id required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the object |
address | string Address. The base address of the hardware. If the property HttpsEnabled exists in the general settings of this hardware and has the value Yes, the address should be modified to use HTTPS and the port defined in the property named HttpsPort under general settings. |
description | string Description |
enabled | boolean |
object (path_hardwareDrivers) Hardware driver. Contains the path/ID of the device driver used for the hardware. Driver can be looked up under the recording server. | |
name | string Name |
userName | string User name |
object |
{- "description": "Hardware may have a long description",
- "enabled": true,
- "hardwareDriverPath": {
- "type": "hardwareDrivers",
- "id": "699dd024-4119-4e3d-b7dd-e2b371d18d79"
}, - "name": "MultiStream Hardware",
- "userName": "admin",
- "relations": {
- "self": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
{- "data": {
- "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": "fisheyeLens",
- "id": "d0ae3832-344b-4886-a699-3a74d2465a85"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": "motionDetections",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": "privacyProtections",
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": "ptzPresets",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": true,
- "displayName": "Video stream 1",
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Hardware may have a long description",
- "displayName": "MultiStream Hardware",
- "enabled": true,
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "hardwareDriverPath": {
- "type": "hardwareDrivers",
- "id": "699dd024-4119-4e3d-b7dd-e2b371d18d79"
}, - "hardwareDriverSettings": [
- {
- "displayName": "Settings",
- "hardwarePtz": {
- "displayName": "Pan-Tilt-Zoom",
- "ptzUsePtzDeviceID": true
}, - "relations": {
- "self": {
- "type": "hardwareDriverSettings",
- "id": "cc12d372-a0fc-4d00-a816-2894a15f11ef"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "hardwarePtzSettings": [
- {
- "displayName": "PTZ",
- "hardwarePtzDeviceSettings": [
- {
- "displayName": "Test Driver Camera 1",
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzEnabled": false,
- "ptzProtocol": "1"
}
], - "relations": {
- "self": {
- "type": "hardwarePtzSettings",
- "id": "67e0b238-efaa-4c52-bcf4-52bcb874cfbd"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "id": "965c4a97-449a-4b4b-b772-e50e7b44f700",
- "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "model": "StableFPS_T800",
- "name": "MultiStream Hardware",
- "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "passwordLastModified": "2022-05-23T09:24:58.9130000+02:00",
- "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "userName": "admin",
- "relations": {
- "self": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
}
Update provided fields on Hardware
id required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the object |
address | string Address. The base address of the hardware. If the property HttpsEnabled exists in the general settings of this hardware and has the value Yes, the address should be modified to use HTTPS and the port defined in the property named HttpsPort under general settings. |
description | string Description |
enabled | boolean |
object (path_hardwareDrivers) Hardware driver. Contains the path/ID of the device driver used for the hardware. Driver can be looked up under the recording server. | |
name | string Name |
userName | string User name |
object |
{- "description": "Hardware may have a long description",
- "enabled": true,
- "hardwareDriverPath": {
- "type": "hardwareDrivers",
- "id": "699dd024-4119-4e3d-b7dd-e2b371d18d79"
}, - "name": "MultiStream Hardware",
- "userName": "admin",
- "relations": {
- "self": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
{- "data": {
- "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": "fisheyeLens",
- "id": "d0ae3832-344b-4886-a699-3a74d2465a85"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": "motionDetections",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": "privacyProtections",
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": "ptzPresets",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": true,
- "displayName": "Video stream 1",
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Hardware may have a long description",
- "displayName": "MultiStream Hardware",
- "enabled": true,
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "hardwareDriverPath": {
- "type": "hardwareDrivers",
- "id": "699dd024-4119-4e3d-b7dd-e2b371d18d79"
}, - "hardwareDriverSettings": [
- {
- "displayName": "Settings",
- "hardwarePtz": {
- "displayName": "Pan-Tilt-Zoom",
- "ptzUsePtzDeviceID": true
}, - "relations": {
- "self": {
- "type": "hardwareDriverSettings",
- "id": "cc12d372-a0fc-4d00-a816-2894a15f11ef"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "hardwarePtzSettings": [
- {
- "displayName": "PTZ",
- "hardwarePtzDeviceSettings": [
- {
- "displayName": "Test Driver Camera 1",
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzEnabled": false,
- "ptzProtocol": "1"
}
], - "relations": {
- "self": {
- "type": "hardwarePtzSettings",
- "id": "67e0b238-efaa-4c52-bcf4-52bcb874cfbd"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "id": "965c4a97-449a-4b4b-b772-e50e7b44f700",
- "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "model": "StableFPS_T800",
- "name": "MultiStream Hardware",
- "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "passwordLastModified": "2022-05-23T09:24:58.9130000+02:00",
- "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "userName": "admin",
- "relations": {
- "self": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
}
Perform a task
id required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the object |
task required | string Example: task=UpdateFirmwareHardware task=ReadPasswordHardware, or task=ChangePasswordHardware, or task=MoveHardware, or task=ReplaceHardware, or task=UpdateFirmwareHardware ReadPasswordHardware - Read hardware password ChangePasswordHardware - Change hardware password MoveHardware - Move hardware ReplaceHardware - Replace hardware UpdateFirmwareHardware - Update firmware |
password | string <password> Password |
updatePasswordOnDevice | boolean Update password also on device. If checked the password will be changed in the system and on the hardware device itself |
{- "password": "pa$$word",
- "updatePasswordOnDevice": true
}
{- "result": {
- "state": "Success"
}
}
Get array of all cameras
id required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the hardware object |
{- "array": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": "fisheyeLens",
- "id": "d0ae3832-344b-4886-a699-3a74d2465a85"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": "motionDetections",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": "privacyProtections",
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": "ptzPresets",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": true,
- "displayName": "Video stream 1",
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Get specific cameras
idParent required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the hardware object |
id required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the camera object |
{- "array": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": "fisheyeLens",
- "id": "d0ae3832-344b-4886-a699-3a74d2465a85"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": "motionDetections",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": "privacyProtections",
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": "ptzPresets",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": true,
- "displayName": "Video stream 1",
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Get array of all customProperties
id required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the hardware object |
{- "array": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get specific customProperties
idParent required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the hardware object |
id required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the customPropertie object |
{- "array": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get array of all hardwareDeviceEvents
id required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the hardware object |
{- "array": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get specific hardwareDeviceEvents
idParent required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the hardware object |
id required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the hardwareDeviceEvent object |
{- "array": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get array of all hardwareDriverSettings
id required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the hardware object |
{- "array": [
- {
- "displayName": "Settings",
- "hardwarePtz": {
- "displayName": "Pan-Tilt-Zoom",
- "ptzUsePtzDeviceID": true
}, - "relations": {
- "self": {
- "type": "hardwareDriverSettings",
- "id": "cc12d372-a0fc-4d00-a816-2894a15f11ef"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Get specific hardwareDriverSettings
idParent required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the hardware object |
id required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the hardwareDriverSetting object |
{- "array": [
- {
- "displayName": "Settings",
- "hardwarePtz": {
- "displayName": "Pan-Tilt-Zoom",
- "ptzUsePtzDeviceID": true
}, - "relations": {
- "self": {
- "type": "hardwareDriverSettings",
- "id": "cc12d372-a0fc-4d00-a816-2894a15f11ef"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Get array of all hardwarePtzSettings
id required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the hardware object |
{- "array": [
- {
- "displayName": "PTZ",
- "hardwarePtzDeviceSettings": [
- {
- "displayName": "Test Driver Camera 1",
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzEnabled": false,
- "ptzProtocol": "1"
}
], - "relations": {
- "self": {
- "type": "hardwarePtzSettings",
- "id": "67e0b238-efaa-4c52-bcf4-52bcb874cfbd"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Get specific hardwarePtzSettings
idParent required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the hardware object |
id required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the hardwarePtzSetting object |
{- "array": [
- {
- "displayName": "PTZ",
- "hardwarePtzDeviceSettings": [
- {
- "displayName": "Test Driver Camera 1",
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzEnabled": false,
- "ptzProtocol": "1"
}
], - "relations": {
- "self": {
- "type": "hardwarePtzSettings",
- "id": "67e0b238-efaa-4c52-bcf4-52bcb874cfbd"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Get array of all inputEvents
id required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the hardware object |
{- "array": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Get specific inputEvents
idParent required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the hardware object |
id required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the inputEvent object |
{- "array": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Get array of all metadata
id required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the hardware object |
{- "array": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Get specific metadata
idParent required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the hardware object |
id required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the metadata object |
{- "array": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Get array of all microphones
id required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the hardware object |
{- "array": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Get specific microphones
idParent required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the hardware object |
id required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the microphone object |
{- "array": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Get array of all outputs
id required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the hardware object |
{- "array": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Get specific outputs
idParent required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the hardware object |
id required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the output object |
{- "array": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Get array of all speakers
id required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the hardware object |
{- "array": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Get specific speakers
idParent required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the hardware object |
id required | string <guid> Example: 965c4a97-449a-4b4b-b772-e50e7b44f700 Id of the speaker object |
{- "array": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Input. To include disabled items add ?disabled to the request.
disabled | boolean Add this parameter to have disabled items included |
{- "array": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Input
id required | string <guid> Example: 1ee97b92-664b-4841-860a-b9d53b158d00 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Input
id required | string <guid> Example: 1ee97b92-664b-4841-860a-b9d53b158d00 Id of the object |
coverageDepth | number <double> Depth. Indicate the viewing depth of the device. |
coverageDirection | number <double> Direction. Indicate the viewing direction of the device. |
coverageFieldOfView | number <double> Field of view. Indicate the field of view of the device. |
description | string Description |
enabled | boolean |
gisPoint | string Device position. Device position. Position of device in longitude, latitude and potentially altitude.
The format is "POINT (LONGITUDE LATITUDE)" and if you want to clear the coordinates, the value to use is "POINT EMPTY".
Examples: "POINT (55.656932878513 12.3763545558449)" "POINT EMPTY" |
icon | integer Icon identifier. The relevant device icon to show in Smart Map. Values between 0-9 for cameras, 0-6 for input devices, 0-3 for microphones and 0-3 for outputs. If invalid value is given, Smart Map have a fallback icon. |
name | string Name |
shortName | string Short name. Used as name in the user interface where appropriate. |
object |
{- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "description": "InputEvent may have a long description",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "icon": 0,
- "name": "Test Driver Input 1",
- "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
{- "data": {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
}
Input
id required | string <guid> Example: 1ee97b92-664b-4841-860a-b9d53b158d00 Id of the object |
coverageDepth | number <double> Depth. Indicate the viewing depth of the device. |
coverageDirection | number <double> Direction. Indicate the viewing direction of the device. |
coverageFieldOfView | number <double> Field of view. Indicate the field of view of the device. |
description | string Description |
enabled | boolean |
gisPoint | string Device position. Device position. Position of device in longitude, latitude and potentially altitude.
The format is "POINT (LONGITUDE LATITUDE)" and if you want to clear the coordinates, the value to use is "POINT EMPTY".
Examples: "POINT (55.656932878513 12.3763545558449)" "POINT EMPTY" |
icon | integer Icon identifier. The relevant device icon to show in Smart Map. Values between 0-9 for cameras, 0-6 for input devices, 0-3 for microphones and 0-3 for outputs. If invalid value is given, Smart Map have a fallback icon. |
name | string Name |
shortName | string Short name. Used as name in the user interface where appropriate. |
object |
{- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "description": "InputEvent may have a long description",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "icon": 0,
- "name": "Test Driver Input 1",
- "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
{- "data": {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
}
Input
id required | string <guid> Example: 1ee97b92-664b-4841-860a-b9d53b158d00 Id of the object |
task required | string Example: task=ChangeSecurityPermissions task=ChangeSecurityPermissions ChangeSecurityPermissions - Edit permissions |
object (path_roles) User or role to update |
{- "userPath": {
- "type": "roles",
- "id": "9b9cd381-00ab-41a6-a0a5-be8c705bc26b"
}
}
{- "result": {
- "displayName": "MultiStream Camera",
- "enabled": true,
- "userPath": {
- "type": "roles",
- "id": "9b9cd381-00ab-41a6-a0a5-be8c705bc26b"
}
}
}
Input
id required | string <guid> Example: 1ee97b92-664b-4841-860a-b9d53b158d00 Id of the inputEvent object |
{- "array": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Input
idParent required | string <guid> Example: 1ee97b92-664b-4841-860a-b9d53b158d00 Id of the inputEvent object |
id required | string <guid> Example: 1ee97b92-664b-4841-860a-b9d53b158d00 Id of the customPropertie object |
{- "array": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Input
id required | string <guid> Example: 1ee97b92-664b-4841-860a-b9d53b158d00 Id of the inputEvent object |
{- "array": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Input
id required | string <guid> Example: 1ee97b92-664b-4841-860a-b9d53b158d00 Id of the inputEvent object |
{- "array": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Input
idParent required | string <guid> Example: 1ee97b92-664b-4841-860a-b9d53b158d00 Id of the inputEvent object |
id required | string <guid> Example: 1ee97b92-664b-4841-860a-b9d53b158d00 Id of the hardwareDeviceEvent object |
{- "array": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get array of all enabled Metadata. To include disabled items add ?disabled to the request.
disabled | boolean Add this parameter to have disabled items included |
{- "array": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Get specific object of Metadata
id required | string <guid> Example: 5eb4ff4a-d570-4440-91a8-faee8b1ba205 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Update all fields on Metadata
id required | string <guid> Example: 5eb4ff4a-d570-4440-91a8-faee8b1ba205 Id of the object |
coverageDepth | number <double> Depth. Indicate the viewing depth of the device. |
coverageDirection | number <double> Direction. Indicate the viewing direction of the device. |
coverageFieldOfView | number <double> Field of view. Indicate the field of view of the device. |
description | string Description |
edgeStorageEnabled | boolean Remote recording enabled |
edgeStoragePlaybackEnabled | boolean Remote recording playback |
enabled | boolean |
gisPoint | string Device position. Device position. Position of device in longitude, latitude and potentially altitude.
The format is "POINT (LONGITUDE LATITUDE)" and if you want to clear the coordinates, the value to use is "POINT EMPTY".
Examples: "POINT (55.656932878513 12.3763545558449)" "POINT EMPTY" |
icon | integer Icon identifier. The relevant device icon to show in Smart Map. Values between 0-9 for cameras, 0-6 for input devices, 0-3 for microphones and 0-3 for outputs. If invalid value is given, Smart Map have a fallback icon. |
manualRecordingTimeoutEnabled | boolean Manual recording timeout enabled |
manualRecordingTimeoutMinutes | integer Manual recording timeout in minutes |
name | string Name |
prebufferEnabled | boolean Prebuffer enabled |
prebufferInMemory | boolean Prebuffer in memory |
prebufferSeconds | integer Prebuffer seconds |
recordingEnabled | boolean Recording enabled |
object (path_storages) Path. Contains the path to the related recording storage | |
shortName | string Short name. Used as name in the user interface where appropriate. |
object |
{- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "description": "Metadata may have a long description",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "icon": 0,
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
{- "data": {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
}
Update provided fields on Metadata
id required | string <guid> Example: 5eb4ff4a-d570-4440-91a8-faee8b1ba205 Id of the object |
coverageDepth | number <double> Depth. Indicate the viewing depth of the device. |
coverageDirection | number <double> Direction. Indicate the viewing direction of the device. |
coverageFieldOfView | number <double> Field of view. Indicate the field of view of the device. |
description | string Description |
edgeStorageEnabled | boolean Remote recording enabled |
edgeStoragePlaybackEnabled | boolean Remote recording playback |
enabled | boolean |
gisPoint | string Device position. Device position. Position of device in longitude, latitude and potentially altitude.
The format is "POINT (LONGITUDE LATITUDE)" and if you want to clear the coordinates, the value to use is "POINT EMPTY".
Examples: "POINT (55.656932878513 12.3763545558449)" "POINT EMPTY" |
icon | integer Icon identifier. The relevant device icon to show in Smart Map. Values between 0-9 for cameras, 0-6 for input devices, 0-3 for microphones and 0-3 for outputs. If invalid value is given, Smart Map have a fallback icon. |
manualRecordingTimeoutEnabled | boolean Manual recording timeout enabled |
manualRecordingTimeoutMinutes | integer Manual recording timeout in minutes |
name | string Name |
prebufferEnabled | boolean Prebuffer enabled |
prebufferInMemory | boolean Prebuffer in memory |
prebufferSeconds | integer Prebuffer seconds |
recordingEnabled | boolean Recording enabled |
object (path_storages) Path. Contains the path to the related recording storage | |
shortName | string Short name. Used as name in the user interface where appropriate. |
object |
{- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "description": "Metadata may have a long description",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "icon": 0,
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
{- "data": {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
}
Perform a task
id required | string <guid> Example: 5eb4ff4a-d570-4440-91a8-faee8b1ba205 Id of the object |
task required | string Example: task=ChangeSecurityPermissions task=GetOtherRecordingServersWithMedia, or task=GetOtherRecordingStoragesWithMedia, or task=RetrieveEdgeStorage, or task=TruncateStorage, or task=TruncateStorageOnOtherRecordingServer, or task=ChangeDeviceRecordingStorage, or task=ChangeSecurityPermissions GetOtherRecordingServersWithMedia - Get recording servers with media GetOtherRecordingStoragesWithMedia - [DEPRECATED] This function is deprecated and should not be used. As an alternative, use the value of the 'RecordingStorage' property to get the configured recording storage for the device. RetrieveEdgeStorage - Retrieve recordings from edge storage TruncateStorage - Delete all recordings for device on storage TruncateStorageOnOtherRecordingServer - Delete all recordings for device on another recording server ChangeDeviceRecordingStorage - Change storage for device ChangeSecurityPermissions - Edit permissions |
endTime | string <date-time-fraction> End time |
startTime | string <date-time-fraction> Start time |
{- "endTime": "2022-05-23T09:24:58.9130000+02:00",
- "startTime": "2022-05-23T09:24:58.9130000+02:00"
}
{- "result": {
- "state": "Success",
- "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": "fisheyeLens",
- "id": "d0ae3832-344b-4886-a699-3a74d2465a85"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": "motionDetections",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": "privacyProtections",
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": "ptzPresets",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": true,
- "displayName": "Video stream 1",
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "storages": [
- {
- "archiveStorages": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "displayName": "ArchiveSchedule",
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": "archiveStorages",
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d"
}, - "parent": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}
}
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Storage may have a long description",
- "diskPath": "c:\\encryptedStorage",
- "displayName": "encryptedStorage",
- "encryptionMethod": "Light",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949",
- "isDefault": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "name": "encryptedStorage",
- "retainMinutes": 30,
- "signing": false,
- "relations": {
- "self": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "recordingServers": [
- {
- "activeWebServerUri": "string",
- "description": "RecordingServer may have a long description",
- "displayName": "DKTA-0810SK0016",
- "enabled": true,
- "hardware": [
- {
- "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": null,
- "enabled": null,
- "fisheyeFieldOfView": null,
- "orientation": null,
- "registeredPanomorphLens": null,
- "registeredPanomorphLensNumber": null,
- "relations": { }
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": null,
- "displayName": null,
- "enabled": null,
- "excludeRegions": null,
- "generateMotionMetadata": null,
- "gridSize": null,
- "hardwareAccelerationMode": null,
- "id": null,
- "keyframesOnly": null,
- "manualSensitivity": null,
- "manualSensitivityEnabled": null,
- "processTime": null,
- "threshold": null,
- "useExcludeRegions": null,
- "relations": { }
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": null,
- "description": null,
- "displayName": null,
- "endPresetId": null,
- "endSpeed": null,
- "endTransitionTime": null,
- "id": null,
- "initSpeed": null,
- "initTransitionTime": null,
- "name": null,
- "patrollingEntry": [ ],
- "relations": { }
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": null,
- "enabled": null,
- "id": null,
- "privacyMaskXml": null,
- "relations": { }
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": null,
- "description": null,
- "devicePreset": null,
- "devicePresetInternalId": null,
- "displayName": null,
- "id": null,
- "locked": null,
- "name": null,
- "pan": null,
- "tilt": null,
- "zoom": null,
- "relations": { }
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": null,
- "stream": [ ],
- "relations": { }
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Hardware may have a long description",
- "displayName": "MultiStream Hardware",
- "enabled": true,
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "hardwareDriverPath": {
- "type": "hardwareDrivers",
- "id": "699dd024-4119-4e3d-b7dd-e2b371d18d79"
}, - "hardwareDriverSettings": [
- {
- "displayName": "Settings",
- "hardwarePtz": {
- "displayName": "Pan-Tilt-Zoom",
- "ptzUsePtzDeviceID": true
}, - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "hardwarePtzSettings": [
- {
- "displayName": "PTZ",
- "hardwarePtzDeviceSettings": [
- {
- "displayName": null,
- "ptzCOMPort": null,
- "ptzDeviceID": null,
- "ptzEnabled": null,
- "ptzProtocol": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "id": "965c4a97-449a-4b4b-b772-e50e7b44f700",
- "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "model": "StableFPS_T800",
- "name": "MultiStream Hardware",
- "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "passwordLastModified": "2022-05-23T09:24:58.9130000+02:00",
- "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "userName": "admin",
- "relations": {
- "self": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "hardwareDrivers": [
- {
- "displayName": "Mobotix M/D/V/S series",
- "driverRevision": "1.62",
- "driverType": "DevicePack",
- "driverVersion": "DevicePack: 13.2a, Device Pack, Build: Unknown",
- "groupName": "Mobotix",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97",
- "name": "Mobotix M/D/V/S series",
- "number": 86,
- "useCount": 0,
- "relations": {
- "self": {
- "type": "hardwareDrivers",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "hostName": "dkta-0810sk0016.ta.rd.local",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "multicastServerAddress": "0.0.0.0",
- "name": "DKTA-0810SK0016",
- "portNumber": 7563,
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "recordingServerFailovers": [
- {
- "displayName": "Failover settings",
- "failoverPort": 11000,
- "hotStandby": "FailoverRecorder[639DEDEB-FFA4-4449-8588-826061E895FF]",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9",
- "primaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "secondaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "relations": {
- "self": {
- "type": "recordingServerFailovers",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "recordingServerMulticasts": [
- {
- "displayName": "Multicast",
- "enabled": true,
- "id": "536c696f-29c3-4be8-8e35-be5720192620",
- "iPAddressEnd": "232.100.1.0",
- "iPAddressStart": "232.100.1.0",
- "MTU": "1500",
- "portRangeEnd": 47199,
- "portRangeStart": 47100,
- "TTL": "32",
- "relations": {
- "self": {
- "type": "recordingServerMulticasts",
- "id": "536c696f-29c3-4be8-8e35-be5720192620"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "shutdownOnStorageFailure": false,
- "storages": [
- {
- "archiveStorages": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "displayName": "ArchiveSchedule",
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Storage may have a long description",
- "diskPath": "c:\\encryptedStorage",
- "displayName": "encryptedStorage",
- "encryptionMethod": "Light",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949",
- "isDefault": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "name": "encryptedStorage",
- "retainMinutes": 30,
- "signing": false,
- "relations": {
- "self": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "synchronizationTime": -1,
- "timeZoneName": "Romance Standard Time",
- "version": "24.2.12065.1",
- "relations": {
- "self": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "tasks": [
- {
- "result": {
- "progress": "25",
- "errorCode": "61002",
- "errorText": "Something went wrong",
- "state": "Error",
- "path": "hardware/F29FEF78-E5EA-4DCF-B654-8F76886DD873"
}
}
]
}
}
Get array of all clientSettings
id required | string <guid> Example: 5eb4ff4a-d570-4440-91a8-faee8b1ba205 Id of the metadata object |
{- "array": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get specific clientSettings
idParent required | string <guid> Example: 5eb4ff4a-d570-4440-91a8-faee8b1ba205 Id of the metadata object |
id required | string <guid> Example: 5eb4ff4a-d570-4440-91a8-faee8b1ba205 Id of the clientSetting object |
{- "array": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get array of all customProperties
id required | string <guid> Example: 5eb4ff4a-d570-4440-91a8-faee8b1ba205 Id of the metadata object |
{- "array": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get specific customProperties
idParent required | string <guid> Example: 5eb4ff4a-d570-4440-91a8-faee8b1ba205 Id of the metadata object |
id required | string <guid> Example: 5eb4ff4a-d570-4440-91a8-faee8b1ba205 Id of the customPropertie object |
{- "array": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get array of all settings
id required | string <guid> Example: 5eb4ff4a-d570-4440-91a8-faee8b1ba205 Id of the metadata object |
{- "array": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get array of all hardwareDeviceEvents
id required | string <guid> Example: 5eb4ff4a-d570-4440-91a8-faee8b1ba205 Id of the metadata object |
{- "array": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get specific hardwareDeviceEvents
idParent required | string <guid> Example: 5eb4ff4a-d570-4440-91a8-faee8b1ba205 Id of the metadata object |
id required | string <guid> Example: 5eb4ff4a-d570-4440-91a8-faee8b1ba205 Id of the hardwareDeviceEvent object |
{- "array": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get array of all enabled Microphone. To include disabled items add ?disabled to the request.
disabled | boolean Add this parameter to have disabled items included |
{- "array": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Get specific object of Microphone
id required | string <guid> Example: 2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Update all fields on Microphone
id required | string <guid> Example: 2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c Id of the object |
coverageDepth | number <double> Depth. Indicate the viewing depth of the device. |
coverageDirection | number <double> Direction. Indicate the viewing direction of the device. |
coverageFieldOfView | number <double> Field of view. Indicate the field of view of the device. |
description | string Description |
edgeStorageEnabled | boolean Remote recording enabled |
edgeStoragePlaybackEnabled | boolean Remote recording playback |
enabled | boolean |
gisPoint | string Device position. Device position. Position of device in longitude, latitude and potentially altitude.
The format is "POINT (LONGITUDE LATITUDE)" and if you want to clear the coordinates, the value to use is "POINT EMPTY".
Examples: "POINT (55.656932878513 12.3763545558449)" "POINT EMPTY" |
icon | integer Icon identifier. The relevant device icon to show in Smart Map. Values between 0-9 for cameras, 0-6 for input devices, 0-3 for microphones and 0-3 for outputs. If invalid value is given, Smart Map have a fallback icon. |
manualRecordingTimeoutEnabled | boolean Manual recording timeout enabled |
manualRecordingTimeoutMinutes | integer Manual recording timeout in minutes |
name | string Name |
prebufferEnabled | boolean Prebuffer enabled |
prebufferInMemory | boolean Prebuffer in memory |
prebufferSeconds | integer Prebuffer seconds |
recordingEnabled | boolean Recording enabled |
object (path_storages) Path. Contains the path to the related recording storage | |
shortName | string Short name. Used as name in the user interface where appropriate. |
object |
{- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "description": "Microphone may have a long description",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "icon": 0,
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
{- "data": {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
}
Update provided fields on Microphone
id required | string <guid> Example: 2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c Id of the object |
coverageDepth | number <double> Depth. Indicate the viewing depth of the device. |
coverageDirection | number <double> Direction. Indicate the viewing direction of the device. |
coverageFieldOfView | number <double> Field of view. Indicate the field of view of the device. |
description | string Description |
edgeStorageEnabled | boolean Remote recording enabled |
edgeStoragePlaybackEnabled | boolean Remote recording playback |
enabled | boolean |
gisPoint | string Device position. Device position. Position of device in longitude, latitude and potentially altitude.
The format is "POINT (LONGITUDE LATITUDE)" and if you want to clear the coordinates, the value to use is "POINT EMPTY".
Examples: "POINT (55.656932878513 12.3763545558449)" "POINT EMPTY" |
icon | integer Icon identifier. The relevant device icon to show in Smart Map. Values between 0-9 for cameras, 0-6 for input devices, 0-3 for microphones and 0-3 for outputs. If invalid value is given, Smart Map have a fallback icon. |
manualRecordingTimeoutEnabled | boolean Manual recording timeout enabled |
manualRecordingTimeoutMinutes | integer Manual recording timeout in minutes |
name | string Name |
prebufferEnabled | boolean Prebuffer enabled |
prebufferInMemory | boolean Prebuffer in memory |
prebufferSeconds | integer Prebuffer seconds |
recordingEnabled | boolean Recording enabled |
object (path_storages) Path. Contains the path to the related recording storage | |
shortName | string Short name. Used as name in the user interface where appropriate. |
object |
{- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "description": "Microphone may have a long description",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "icon": 0,
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
{- "data": {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
}
Perform a task
id required | string <guid> Example: 2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c Id of the object |
task required | string Example: task=ChangeSecurityPermissions task=GetOtherRecordingServersWithMedia, or task=GetOtherRecordingStoragesWithMedia, or task=RetrieveEdgeStorage, or task=TruncateStorage, or task=TruncateStorageOnOtherRecordingServer, or task=ChangeDeviceRecordingStorage, or task=ChangeSecurityPermissions GetOtherRecordingServersWithMedia - Get recording servers with media GetOtherRecordingStoragesWithMedia - [DEPRECATED] This function is deprecated and should not be used. As an alternative, use the value of the 'RecordingStorage' property to get the configured recording storage for the device. RetrieveEdgeStorage - Retrieve recordings from edge storage TruncateStorage - Delete all recordings for device on storage TruncateStorageOnOtherRecordingServer - Delete all recordings for device on another recording server ChangeDeviceRecordingStorage - Change storage for device ChangeSecurityPermissions - Edit permissions |
endTime | string <date-time-fraction> End time |
startTime | string <date-time-fraction> Start time |
{- "endTime": "2022-05-23T09:24:58.9130000+02:00",
- "startTime": "2022-05-23T09:24:58.9130000+02:00"
}
{- "result": {
- "state": "Success",
- "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": "fisheyeLens",
- "id": "d0ae3832-344b-4886-a699-3a74d2465a85"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": "motionDetections",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": "privacyProtections",
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": "ptzPresets",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": true,
- "displayName": "Video stream 1",
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "storages": [
- {
- "archiveStorages": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "displayName": "ArchiveSchedule",
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": "archiveStorages",
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d"
}, - "parent": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}
}
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Storage may have a long description",
- "diskPath": "c:\\encryptedStorage",
- "displayName": "encryptedStorage",
- "encryptionMethod": "Light",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949",
- "isDefault": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "name": "encryptedStorage",
- "retainMinutes": 30,
- "signing": false,
- "relations": {
- "self": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "recordingServers": [
- {
- "activeWebServerUri": "string",
- "description": "RecordingServer may have a long description",
- "displayName": "DKTA-0810SK0016",
- "enabled": true,
- "hardware": [
- {
- "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": null,
- "enabled": null,
- "fisheyeFieldOfView": null,
- "orientation": null,
- "registeredPanomorphLens": null,
- "registeredPanomorphLensNumber": null,
- "relations": { }
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": null,
- "displayName": null,
- "enabled": null,
- "excludeRegions": null,
- "generateMotionMetadata": null,
- "gridSize": null,
- "hardwareAccelerationMode": null,
- "id": null,
- "keyframesOnly": null,
- "manualSensitivity": null,
- "manualSensitivityEnabled": null,
- "processTime": null,
- "threshold": null,
- "useExcludeRegions": null,
- "relations": { }
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": null,
- "description": null,
- "displayName": null,
- "endPresetId": null,
- "endSpeed": null,
- "endTransitionTime": null,
- "id": null,
- "initSpeed": null,
- "initTransitionTime": null,
- "name": null,
- "patrollingEntry": [ ],
- "relations": { }
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": null,
- "enabled": null,
- "id": null,
- "privacyMaskXml": null,
- "relations": { }
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": null,
- "description": null,
- "devicePreset": null,
- "devicePresetInternalId": null,
- "displayName": null,
- "id": null,
- "locked": null,
- "name": null,
- "pan": null,
- "tilt": null,
- "zoom": null,
- "relations": { }
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": null,
- "stream": [ ],
- "relations": { }
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Hardware may have a long description",
- "displayName": "MultiStream Hardware",
- "enabled": true,
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "hardwareDriverPath": {
- "type": "hardwareDrivers",
- "id": "699dd024-4119-4e3d-b7dd-e2b371d18d79"
}, - "hardwareDriverSettings": [
- {
- "displayName": "Settings",
- "hardwarePtz": {
- "displayName": "Pan-Tilt-Zoom",
- "ptzUsePtzDeviceID": true
}, - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "hardwarePtzSettings": [
- {
- "displayName": "PTZ",
- "hardwarePtzDeviceSettings": [
- {
- "displayName": null,
- "ptzCOMPort": null,
- "ptzDeviceID": null,
- "ptzEnabled": null,
- "ptzProtocol": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "id": "965c4a97-449a-4b4b-b772-e50e7b44f700",
- "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "model": "StableFPS_T800",
- "name": "MultiStream Hardware",
- "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "passwordLastModified": "2022-05-23T09:24:58.9130000+02:00",
- "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "userName": "admin",
- "relations": {
- "self": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "hardwareDrivers": [
- {
- "displayName": "Mobotix M/D/V/S series",
- "driverRevision": "1.62",
- "driverType": "DevicePack",
- "driverVersion": "DevicePack: 13.2a, Device Pack, Build: Unknown",
- "groupName": "Mobotix",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97",
- "name": "Mobotix M/D/V/S series",
- "number": 86,
- "useCount": 0,
- "relations": {
- "self": {
- "type": "hardwareDrivers",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "hostName": "dkta-0810sk0016.ta.rd.local",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "multicastServerAddress": "0.0.0.0",
- "name": "DKTA-0810SK0016",
- "portNumber": 7563,
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "recordingServerFailovers": [
- {
- "displayName": "Failover settings",
- "failoverPort": 11000,
- "hotStandby": "FailoverRecorder[639DEDEB-FFA4-4449-8588-826061E895FF]",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9",
- "primaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "secondaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "relations": {
- "self": {
- "type": "recordingServerFailovers",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "recordingServerMulticasts": [
- {
- "displayName": "Multicast",
- "enabled": true,
- "id": "536c696f-29c3-4be8-8e35-be5720192620",
- "iPAddressEnd": "232.100.1.0",
- "iPAddressStart": "232.100.1.0",
- "MTU": "1500",
- "portRangeEnd": 47199,
- "portRangeStart": 47100,
- "TTL": "32",
- "relations": {
- "self": {
- "type": "recordingServerMulticasts",
- "id": "536c696f-29c3-4be8-8e35-be5720192620"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "shutdownOnStorageFailure": false,
- "storages": [
- {
- "archiveStorages": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "displayName": "ArchiveSchedule",
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Storage may have a long description",
- "diskPath": "c:\\encryptedStorage",
- "displayName": "encryptedStorage",
- "encryptionMethod": "Light",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949",
- "isDefault": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "name": "encryptedStorage",
- "retainMinutes": 30,
- "signing": false,
- "relations": {
- "self": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "synchronizationTime": -1,
- "timeZoneName": "Romance Standard Time",
- "version": "24.2.12065.1",
- "relations": {
- "self": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "tasks": [
- {
- "result": {
- "progress": "25",
- "errorCode": "61002",
- "errorText": "Something went wrong",
- "state": "Error",
- "path": "hardware/F29FEF78-E5EA-4DCF-B654-8F76886DD873"
}
}
]
}
}
Get array of all clientSettings
id required | string <guid> Example: 2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c Id of the microphone object |
{- "array": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get specific clientSettings
idParent required | string <guid> Example: 2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c Id of the microphone object |
id required | string <guid> Example: 2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c Id of the clientSetting object |
{- "array": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get array of all customProperties
id required | string <guid> Example: 2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c Id of the microphone object |
{- "array": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get specific customProperties
idParent required | string <guid> Example: 2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c Id of the microphone object |
id required | string <guid> Example: 2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c Id of the customPropertie object |
{- "array": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get array of all settings
id required | string <guid> Example: 2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c Id of the microphone object |
{- "array": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get array of all hardwareDeviceEvents
id required | string <guid> Example: 2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c Id of the microphone object |
{- "array": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get specific hardwareDeviceEvents
idParent required | string <guid> Example: 2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c Id of the microphone object |
id required | string <guid> Example: 2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c Id of the hardwareDeviceEvent object |
{- "array": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get array of all enabled Output. To include disabled items add ?disabled to the request.
disabled | boolean Add this parameter to have disabled items included |
{- "array": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Get specific object of Output
id required | string <guid> Example: 2d6e053a-6e1b-462b-81ec-a2c3d54148c0 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Update all fields on Output
id required | string <guid> Example: 2d6e053a-6e1b-462b-81ec-a2c3d54148c0 Id of the object |
coverageDepth | number <double> Depth. Indicate the viewing depth of the device. |
coverageDirection | number <double> Direction. Indicate the viewing direction of the device. |
coverageFieldOfView | number <double> Field of view. Indicate the field of view of the device. |
description | string Description |
enabled | boolean |
gisPoint | string Device position. Device position. Position of device in longitude, latitude and potentially altitude.
The format is "POINT (LONGITUDE LATITUDE)" and if you want to clear the coordinates, the value to use is "POINT EMPTY".
Examples: "POINT (55.656932878513 12.3763545558449)" "POINT EMPTY" |
icon | integer Icon identifier. The relevant device icon to show in Smart Map. Values between 0-9 for cameras, 0-6 for input devices, 0-3 for microphones and 0-3 for outputs. If invalid value is given, Smart Map have a fallback icon. |
name | string Name |
shortName | string Short name. Used as name in the user interface where appropriate. |
object |
{- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "description": "Output may have a long description",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "icon": 0,
- "name": "Bunny Output",
- "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
{- "data": {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
}
Update provided fields on Output
id required | string <guid> Example: 2d6e053a-6e1b-462b-81ec-a2c3d54148c0 Id of the object |
coverageDepth | number <double> Depth. Indicate the viewing depth of the device. |
coverageDirection | number <double> Direction. Indicate the viewing direction of the device. |
coverageFieldOfView | number <double> Field of view. Indicate the field of view of the device. |
description | string Description |
enabled | boolean |
gisPoint | string Device position. Device position. Position of device in longitude, latitude and potentially altitude.
The format is "POINT (LONGITUDE LATITUDE)" and if you want to clear the coordinates, the value to use is "POINT EMPTY".
Examples: "POINT (55.656932878513 12.3763545558449)" "POINT EMPTY" |
icon | integer Icon identifier. The relevant device icon to show in Smart Map. Values between 0-9 for cameras, 0-6 for input devices, 0-3 for microphones and 0-3 for outputs. If invalid value is given, Smart Map have a fallback icon. |
name | string Name |
shortName | string Short name. Used as name in the user interface where appropriate. |
object |
{- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "description": "Output may have a long description",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "icon": 0,
- "name": "Bunny Output",
- "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
{- "data": {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
}
Perform a task
id required | string <guid> Example: 2d6e053a-6e1b-462b-81ec-a2c3d54148c0 Id of the object |
task required | string Example: task=Deactivate task=ChangeSecurityPermissions, or task=Trigger, or task=Activate, or task=Deactivate ChangeSecurityPermissions - Edit permissions Trigger - Trigger output Activate - Activate output Deactivate - Deactivate output |
object (path_roles) User or role to update |
{- "userPath": {
- "type": "roles",
- "id": "9b9cd381-00ab-41a6-a0a5-be8c705bc26b"
}
}
{- "result": {
- "displayName": "MultiStream Camera",
- "enabled": true,
- "userPath": {
- "type": "roles",
- "id": "9b9cd381-00ab-41a6-a0a5-be8c705bc26b"
}
}
}
Get array of all customProperties
id required | string <guid> Example: 2d6e053a-6e1b-462b-81ec-a2c3d54148c0 Id of the output object |
{- "array": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get specific customProperties
idParent required | string <guid> Example: 2d6e053a-6e1b-462b-81ec-a2c3d54148c0 Id of the output object |
id required | string <guid> Example: 2d6e053a-6e1b-462b-81ec-a2c3d54148c0 Id of the customPropertie object |
{- "array": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get array of all settings
id required | string <guid> Example: 2d6e053a-6e1b-462b-81ec-a2c3d54148c0 Id of the output object |
{- "array": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get array of all hardwareDeviceEvents
id required | string <guid> Example: 2d6e053a-6e1b-462b-81ec-a2c3d54148c0 Id of the output object |
{- "array": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get specific hardwareDeviceEvents
idParent required | string <guid> Example: 2d6e053a-6e1b-462b-81ec-a2c3d54148c0 Id of the output object |
id required | string <guid> Example: 2d6e053a-6e1b-462b-81ec-a2c3d54148c0 Id of the hardwareDeviceEvent object |
{- "array": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get array of all enabled Speaker. To include disabled items add ?disabled to the request.
disabled | boolean Add this parameter to have disabled items included |
{- "array": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
]
}
Get specific object of Speaker
id required | string <guid> Example: f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Update all fields on Speaker
id required | string <guid> Example: f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7 Id of the object |
coverageDepth | number <double> Depth. Indicate the viewing depth of the device. |
coverageDirection | number <double> Direction. Indicate the viewing direction of the device. |
coverageFieldOfView | number <double> Field of view. Indicate the field of view of the device. |
description | string Description |
edgeStorageEnabled | boolean Remote recording enabled |
edgeStoragePlaybackEnabled | boolean Remote recording playback |
enabled | boolean |
gisPoint | string Device position. Device position. Position of device in longitude, latitude and potentially altitude.
The format is "POINT (LONGITUDE LATITUDE)" and if you want to clear the coordinates, the value to use is "POINT EMPTY".
Examples: "POINT (55.656932878513 12.3763545558449)" "POINT EMPTY" |
icon | integer Icon identifier. The relevant device icon to show in Smart Map. Values between 0-9 for cameras, 0-6 for input devices, 0-3 for microphones and 0-3 for outputs. If invalid value is given, Smart Map have a fallback icon. |
manualRecordingTimeoutEnabled | boolean Manual recording timeout enabled |
manualRecordingTimeoutMinutes | integer Manual recording timeout in minutes |
name | string Name |
prebufferEnabled | boolean Prebuffer enabled |
prebufferInMemory | boolean Prebuffer in memory |
prebufferSeconds | integer Prebuffer seconds |
recordingEnabled | boolean Recording enabled |
object (path_storages) Path. Contains the path to the related recording storage | |
shortName | string Short name. Used as name in the user interface where appropriate. |
object |
{- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "description": "Speaker may have a long description",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "icon": 0,
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
{- "data": {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
}
Update provided fields on Speaker
id required | string <guid> Example: f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7 Id of the object |
coverageDepth | number <double> Depth. Indicate the viewing depth of the device. |
coverageDirection | number <double> Direction. Indicate the viewing direction of the device. |
coverageFieldOfView | number <double> Field of view. Indicate the field of view of the device. |
description | string Description |
edgeStorageEnabled | boolean Remote recording enabled |
edgeStoragePlaybackEnabled | boolean Remote recording playback |
enabled | boolean |
gisPoint | string Device position. Device position. Position of device in longitude, latitude and potentially altitude.
The format is "POINT (LONGITUDE LATITUDE)" and if you want to clear the coordinates, the value to use is "POINT EMPTY".
Examples: "POINT (55.656932878513 12.3763545558449)" "POINT EMPTY" |
icon | integer Icon identifier. The relevant device icon to show in Smart Map. Values between 0-9 for cameras, 0-6 for input devices, 0-3 for microphones and 0-3 for outputs. If invalid value is given, Smart Map have a fallback icon. |
manualRecordingTimeoutEnabled | boolean Manual recording timeout enabled |
manualRecordingTimeoutMinutes | integer Manual recording timeout in minutes |
name | string Name |
prebufferEnabled | boolean Prebuffer enabled |
prebufferInMemory | boolean Prebuffer in memory |
prebufferSeconds | integer Prebuffer seconds |
recordingEnabled | boolean Recording enabled |
object (path_storages) Path. Contains the path to the related recording storage | |
shortName | string Short name. Used as name in the user interface where appropriate. |
object |
{- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "description": "Speaker may have a long description",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "icon": 0,
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
{- "data": {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
}
Perform a task
id required | string <guid> Example: f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7 Id of the object |
task required | string Example: task=ChangeSecurityPermissions task=GetOtherRecordingServersWithMedia, or task=GetOtherRecordingStoragesWithMedia, or task=RetrieveEdgeStorage, or task=TruncateStorage, or task=TruncateStorageOnOtherRecordingServer, or task=ChangeDeviceRecordingStorage, or task=ChangeSecurityPermissions GetOtherRecordingServersWithMedia - Get recording servers with media GetOtherRecordingStoragesWithMedia - [DEPRECATED] This function is deprecated and should not be used. As an alternative, use the value of the 'RecordingStorage' property to get the configured recording storage for the device. RetrieveEdgeStorage - Retrieve recordings from edge storage TruncateStorage - Delete all recordings for device on storage TruncateStorageOnOtherRecordingServer - Delete all recordings for device on another recording server ChangeDeviceRecordingStorage - Change storage for device ChangeSecurityPermissions - Edit permissions |
endTime | string <date-time-fraction> End time |
startTime | string <date-time-fraction> Start time |
{- "endTime": "2022-05-23T09:24:58.9130000+02:00",
- "startTime": "2022-05-23T09:24:58.9130000+02:00"
}
{- "result": {
- "state": "Success",
- "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": "fisheyeLens",
- "id": "d0ae3832-344b-4886-a699-3a74d2465a85"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": "motionDetections",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": "privacyProtections",
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": "ptzPresets",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": true,
- "displayName": "Video stream 1",
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "storages": [
- {
- "archiveStorages": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "displayName": "ArchiveSchedule",
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": "archiveStorages",
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d"
}, - "parent": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}
}
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Storage may have a long description",
- "diskPath": "c:\\encryptedStorage",
- "displayName": "encryptedStorage",
- "encryptionMethod": "Light",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949",
- "isDefault": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "name": "encryptedStorage",
- "retainMinutes": 30,
- "signing": false,
- "relations": {
- "self": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "recordingServers": [
- {
- "activeWebServerUri": "string",
- "description": "RecordingServer may have a long description",
- "displayName": "DKTA-0810SK0016",
- "enabled": true,
- "hardware": [
- {
- "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": null,
- "enabled": null,
- "fisheyeFieldOfView": null,
- "orientation": null,
- "registeredPanomorphLens": null,
- "registeredPanomorphLensNumber": null,
- "relations": { }
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": null,
- "displayName": null,
- "enabled": null,
- "excludeRegions": null,
- "generateMotionMetadata": null,
- "gridSize": null,
- "hardwareAccelerationMode": null,
- "id": null,
- "keyframesOnly": null,
- "manualSensitivity": null,
- "manualSensitivityEnabled": null,
- "processTime": null,
- "threshold": null,
- "useExcludeRegions": null,
- "relations": { }
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": null,
- "description": null,
- "displayName": null,
- "endPresetId": null,
- "endSpeed": null,
- "endTransitionTime": null,
- "id": null,
- "initSpeed": null,
- "initTransitionTime": null,
- "name": null,
- "patrollingEntry": [ ],
- "relations": { }
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": null,
- "enabled": null,
- "id": null,
- "privacyMaskXml": null,
- "relations": { }
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": null,
- "description": null,
- "devicePreset": null,
- "devicePresetInternalId": null,
- "displayName": null,
- "id": null,
- "locked": null,
- "name": null,
- "pan": null,
- "tilt": null,
- "zoom": null,
- "relations": { }
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": null,
- "stream": [ ],
- "relations": { }
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Hardware may have a long description",
- "displayName": "MultiStream Hardware",
- "enabled": true,
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "hardwareDriverPath": {
- "type": "hardwareDrivers",
- "id": "699dd024-4119-4e3d-b7dd-e2b371d18d79"
}, - "hardwareDriverSettings": [
- {
- "displayName": "Settings",
- "hardwarePtz": {
- "displayName": "Pan-Tilt-Zoom",
- "ptzUsePtzDeviceID": true
}, - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "hardwarePtzSettings": [
- {
- "displayName": "PTZ",
- "hardwarePtzDeviceSettings": [
- {
- "displayName": null,
- "ptzCOMPort": null,
- "ptzDeviceID": null,
- "ptzEnabled": null,
- "ptzProtocol": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "id": "965c4a97-449a-4b4b-b772-e50e7b44f700",
- "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "model": "StableFPS_T800",
- "name": "MultiStream Hardware",
- "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "passwordLastModified": "2022-05-23T09:24:58.9130000+02:00",
- "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "userName": "admin",
- "relations": {
- "self": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "hardwareDrivers": [
- {
- "displayName": "Mobotix M/D/V/S series",
- "driverRevision": "1.62",
- "driverType": "DevicePack",
- "driverVersion": "DevicePack: 13.2a, Device Pack, Build: Unknown",
- "groupName": "Mobotix",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97",
- "name": "Mobotix M/D/V/S series",
- "number": 86,
- "useCount": 0,
- "relations": {
- "self": {
- "type": "hardwareDrivers",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "hostName": "dkta-0810sk0016.ta.rd.local",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "multicastServerAddress": "0.0.0.0",
- "name": "DKTA-0810SK0016",
- "portNumber": 7563,
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "recordingServerFailovers": [
- {
- "displayName": "Failover settings",
- "failoverPort": 11000,
- "hotStandby": "FailoverRecorder[639DEDEB-FFA4-4449-8588-826061E895FF]",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9",
- "primaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "secondaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "relations": {
- "self": {
- "type": "recordingServerFailovers",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "recordingServerMulticasts": [
- {
- "displayName": "Multicast",
- "enabled": true,
- "id": "536c696f-29c3-4be8-8e35-be5720192620",
- "iPAddressEnd": "232.100.1.0",
- "iPAddressStart": "232.100.1.0",
- "MTU": "1500",
- "portRangeEnd": 47199,
- "portRangeStart": 47100,
- "TTL": "32",
- "relations": {
- "self": {
- "type": "recordingServerMulticasts",
- "id": "536c696f-29c3-4be8-8e35-be5720192620"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "shutdownOnStorageFailure": false,
- "storages": [
- {
- "archiveStorages": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "displayName": "ArchiveSchedule",
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Storage may have a long description",
- "diskPath": "c:\\encryptedStorage",
- "displayName": "encryptedStorage",
- "encryptionMethod": "Light",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949",
- "isDefault": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "name": "encryptedStorage",
- "retainMinutes": 30,
- "signing": false,
- "relations": {
- "self": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "synchronizationTime": -1,
- "timeZoneName": "Romance Standard Time",
- "version": "24.2.12065.1",
- "relations": {
- "self": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "tasks": [
- {
- "result": {
- "progress": "25",
- "errorCode": "61002",
- "errorText": "Something went wrong",
- "state": "Error",
- "path": "hardware/F29FEF78-E5EA-4DCF-B654-8F76886DD873"
}
}
]
}
}
Get array of all clientSettings
id required | string <guid> Example: f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7 Id of the speaker object |
{- "array": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get specific clientSettings
idParent required | string <guid> Example: f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7 Id of the speaker object |
id required | string <guid> Example: f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7 Id of the clientSetting object |
{- "array": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get array of all customProperties
id required | string <guid> Example: f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7 Id of the speaker object |
{- "array": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get specific customProperties
idParent required | string <guid> Example: f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7 Id of the speaker object |
id required | string <guid> Example: f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7 Id of the customPropertie object |
{- "array": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get array of all settings
id required | string <guid> Example: f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7 Id of the speaker object |
{- "array": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get array of all hardwareDeviceEvents
id required | string <guid> Example: f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7 Id of the speaker object |
{- "array": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get specific hardwareDeviceEvents
idParent required | string <guid> Example: f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7 Id of the speaker object |
id required | string <guid> Example: f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7 Id of the hardwareDeviceEvent object |
{- "array": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
]
}
Get specific object of Stream
id required | string <guid> Example: e2537088-a892-43d8-885d-a454b5f98869 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": true,
- "displayName": "Video stream 1",
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Update all fields on Stream
id required | string <guid> Example: e2537088-a892-43d8-885d-a454b5f98869 Id of the object |
Array of objects (stream) | |
object |
{- "stream": [
- {
- "defaultPlayback": true,
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
{- "data": {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": true,
- "displayName": "Video stream 1",
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
}
Update provided fields on Stream
id required | string <guid> Example: e2537088-a892-43d8-885d-a454b5f98869 Id of the object |
Array of objects (stream) | |
object |
{- "stream": [
- {
- "defaultPlayback": true,
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
{- "data": {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": true,
- "displayName": "Video stream 1",
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
}
Perform a task
id required | string <guid> Example: e2537088-a892-43d8-885d-a454b5f98869 Id of the object |
task required | string Example: task=RemoveStream task=AddStream, or task=RemoveStream AddStream - Add stream RemoveStream - Remove stream |
itemSelection | string Select stream to remove |
{- "itemSelection": "string"
}
{- "result": {
- "state": "Success",
- "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": "fisheyeLens",
- "id": "d0ae3832-344b-4886-a699-3a74d2465a85"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": "motionDetections",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": "privacyProtections",
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": "ptzPresets",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": true,
- "displayName": "Video stream 1",
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "storages": [
- {
- "archiveStorages": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "displayName": "ArchiveSchedule",
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": "archiveStorages",
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d"
}, - "parent": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}
}
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Storage may have a long description",
- "diskPath": "c:\\encryptedStorage",
- "displayName": "encryptedStorage",
- "encryptionMethod": "Light",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949",
- "isDefault": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "name": "encryptedStorage",
- "retainMinutes": 30,
- "signing": false,
- "relations": {
- "self": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "recordingServers": [
- {
- "activeWebServerUri": "string",
- "description": "RecordingServer may have a long description",
- "displayName": "DKTA-0810SK0016",
- "enabled": true,
- "hardware": [
- {
- "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": null,
- "enabled": null,
- "fisheyeFieldOfView": null,
- "orientation": null,
- "registeredPanomorphLens": null,
- "registeredPanomorphLensNumber": null,
- "relations": { }
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": null,
- "displayName": null,
- "enabled": null,
- "excludeRegions": null,
- "generateMotionMetadata": null,
- "gridSize": null,
- "hardwareAccelerationMode": null,
- "id": null,
- "keyframesOnly": null,
- "manualSensitivity": null,
- "manualSensitivityEnabled": null,
- "processTime": null,
- "threshold": null,
- "useExcludeRegions": null,
- "relations": { }
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": null,
- "description": null,
- "displayName": null,
- "endPresetId": null,
- "endSpeed": null,
- "endTransitionTime": null,
- "id": null,
- "initSpeed": null,
- "initTransitionTime": null,
- "name": null,
- "patrollingEntry": [ ],
- "relations": { }
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": null,
- "enabled": null,
- "id": null,
- "privacyMaskXml": null,
- "relations": { }
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": null,
- "description": null,
- "devicePreset": null,
- "devicePresetInternalId": null,
- "displayName": null,
- "id": null,
- "locked": null,
- "name": null,
- "pan": null,
- "tilt": null,
- "zoom": null,
- "relations": { }
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": null,
- "stream": [ ],
- "relations": { }
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Hardware may have a long description",
- "displayName": "MultiStream Hardware",
- "enabled": true,
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "hardwareDriverPath": {
- "type": "hardwareDrivers",
- "id": "699dd024-4119-4e3d-b7dd-e2b371d18d79"
}, - "hardwareDriverSettings": [
- {
- "displayName": "Settings",
- "hardwarePtz": {
- "displayName": "Pan-Tilt-Zoom",
- "ptzUsePtzDeviceID": true
}, - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "hardwarePtzSettings": [
- {
- "displayName": "PTZ",
- "hardwarePtzDeviceSettings": [
- {
- "displayName": null,
- "ptzCOMPort": null,
- "ptzDeviceID": null,
- "ptzEnabled": null,
- "ptzProtocol": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "id": "965c4a97-449a-4b4b-b772-e50e7b44f700",
- "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "model": "StableFPS_T800",
- "name": "MultiStream Hardware",
- "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "passwordLastModified": "2022-05-23T09:24:58.9130000+02:00",
- "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "userName": "admin",
- "relations": {
- "self": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "hardwareDrivers": [
- {
- "displayName": "Mobotix M/D/V/S series",
- "driverRevision": "1.62",
- "driverType": "DevicePack",
- "driverVersion": "DevicePack: 13.2a, Device Pack, Build: Unknown",
- "groupName": "Mobotix",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97",
- "name": "Mobotix M/D/V/S series",
- "number": 86,
- "useCount": 0,
- "relations": {
- "self": {
- "type": "hardwareDrivers",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "hostName": "dkta-0810sk0016.ta.rd.local",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "multicastServerAddress": "0.0.0.0",
- "name": "DKTA-0810SK0016",
- "portNumber": 7563,
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "recordingServerFailovers": [
- {
- "displayName": "Failover settings",
- "failoverPort": 11000,
- "hotStandby": "FailoverRecorder[639DEDEB-FFA4-4449-8588-826061E895FF]",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9",
- "primaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "secondaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "relations": {
- "self": {
- "type": "recordingServerFailovers",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "recordingServerMulticasts": [
- {
- "displayName": "Multicast",
- "enabled": true,
- "id": "536c696f-29c3-4be8-8e35-be5720192620",
- "iPAddressEnd": "232.100.1.0",
- "iPAddressStart": "232.100.1.0",
- "MTU": "1500",
- "portRangeEnd": 47199,
- "portRangeStart": 47100,
- "TTL": "32",
- "relations": {
- "self": {
- "type": "recordingServerMulticasts",
- "id": "536c696f-29c3-4be8-8e35-be5720192620"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "shutdownOnStorageFailure": false,
- "storages": [
- {
- "archiveStorages": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "displayName": "ArchiveSchedule",
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Storage may have a long description",
- "diskPath": "c:\\encryptedStorage",
- "displayName": "encryptedStorage",
- "encryptionMethod": "Light",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949",
- "isDefault": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "name": "encryptedStorage",
- "retainMinutes": 30,
- "signing": false,
- "relations": {
- "self": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "synchronizationTime": -1,
- "timeZoneName": "Romance Standard Time",
- "version": "24.2.12065.1",
- "relations": {
- "self": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "tasks": [
- {
- "result": {
- "progress": "25",
- "errorCode": "61002",
- "errorText": "Something went wrong",
- "state": "Error",
- "path": "hardware/F29FEF78-E5EA-4DCF-B654-8F76886DD873"
}
}
]
}
}
{- "array": [
- {
- "description": "AudioMessage may have a long description",
- "displayName": "MyAudioMessage",
- "id": "58556053-ccdc-4315-a82f-dccc0685b593",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyAudioMessage",
- "originalFileName": "mysound.wav",
- "relations": {
- "self": {
- "type": "audioMessages",
- "id": "58556053-ccdc-4315-a82f-dccc0685b593"
}
}
}
]
}
Audio message
description | string Description |
name | string Name |
object |
{- "description": "AudioMessage may have a long description",
- "name": "MyAudioMessage",
- "relations": {
- "self": {
- "type": "audioMessages",
- "id": "58556053-ccdc-4315-a82f-dccc0685b593"
}
}
}
{- "result": {
- "description": "AudioMessage may have a long description",
- "displayName": "MyAudioMessage",
- "id": "58556053-ccdc-4315-a82f-dccc0685b593",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyAudioMessage",
- "originalFileName": "mysound.wav",
- "relations": {
- "self": {
- "type": "audioMessages",
- "id": "58556053-ccdc-4315-a82f-dccc0685b593"
}
}
}
}
Audio message
id required | string <guid> Example: 58556053-ccdc-4315-a82f-dccc0685b593 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "description": "AudioMessage may have a long description",
- "displayName": "MyAudioMessage",
- "id": "58556053-ccdc-4315-a82f-dccc0685b593",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyAudioMessage",
- "originalFileName": "mysound.wav",
- "relations": {
- "self": {
- "type": "audioMessages",
- "id": "58556053-ccdc-4315-a82f-dccc0685b593"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Audio message
id required | string <guid> Example: 58556053-ccdc-4315-a82f-dccc0685b593 Id of the object |
description | string Description |
name | string Name |
object |
{- "description": "AudioMessage may have a long description",
- "name": "MyAudioMessage",
- "relations": {
- "self": {
- "type": "audioMessages",
- "id": "58556053-ccdc-4315-a82f-dccc0685b593"
}
}
}
{- "data": {
- "description": "AudioMessage may have a long description",
- "displayName": "MyAudioMessage",
- "id": "58556053-ccdc-4315-a82f-dccc0685b593",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyAudioMessage",
- "originalFileName": "mysound.wav",
- "relations": {
- "self": {
- "type": "audioMessages",
- "id": "58556053-ccdc-4315-a82f-dccc0685b593"
}
}
}
}
Audio message
id required | string <guid> Example: 58556053-ccdc-4315-a82f-dccc0685b593 Id of the object |
description | string Description |
name | string Name |
object |
{- "description": "AudioMessage may have a long description",
- "name": "MyAudioMessage",
- "relations": {
- "self": {
- "type": "audioMessages",
- "id": "58556053-ccdc-4315-a82f-dccc0685b593"
}
}
}
{- "data": {
- "description": "AudioMessage may have a long description",
- "displayName": "MyAudioMessage",
- "id": "58556053-ccdc-4315-a82f-dccc0685b593",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyAudioMessage",
- "originalFileName": "mysound.wav",
- "relations": {
- "self": {
- "type": "audioMessages",
- "id": "58556053-ccdc-4315-a82f-dccc0685b593"
}
}
}
}
Audio message
id required | string <guid> Example: 58556053-ccdc-4315-a82f-dccc0685b593 Id of the object |
task required | string Example: task=SetAudioMessageContent task=GetAudioMessageContent, or task=SetAudioMessageContent GetAudioMessageContent - Get audio message content SetAudioMessageContent - Set audio message content |
{- "result": {
- "state": "Success"
}
}
Get array of all enabled Rule. To include disabled items add ?disabled to the request.
disabled | boolean Add this parameter to have disabled items included |
{- "array": [
- {
- "always": true,
- "daysOfWeek": false,
- "description": "Rule may have a long description",
- "displayName": "Default Start Audio Feed Rule",
- "enabled": true,
- "failoverActive": false,
- "failoverInactive": false,
- "id": "43609ca5-bfdd-4238-88ff-686b6657138f",
- "name": "Default Start Audio Feed Rule",
- "outsideTimeProfile": false,
- "startActions": "StartFeed",
- "startRuleType": "TimeInterval",
- "stopActions": "StopFeed",
- "stopRuleType": "TimeInterval",
- "timeOfDayBetween": false,
- "withinTimeProfile": false,
- "relations": {
- "self": {
- "type": "rules",
- "id": "43609ca5-bfdd-4238-88ff-686b6657138f"
}
}
}
]
}
Add new rules
always | boolean Always |
daysOfWeek | boolean Day(s) of week |
description | string Description |
enabled | boolean |
failoverActive | boolean While failover is active |
failoverInactive | boolean While failover is inactive |
name | string Name |
outsideTimeProfile | boolean Outside selected time in |
startActions | string Enum: "StartRecording" "PtzMoveToDefault" "PtzMoveToPreset" "SetDeviceOutputState" "StartSetFramerate" "StartSetRecordingFramerate" "StartFeed" "RetrieveEdgeStorage" "RetrieveEdgeStorageTimeOrMetadata" "StartRecordAllFrames" "SetBookmark" "CreateLogEntry" "VideoWallSetToCameras" "VideoWallSetToText" "VideoWallSetToPreset" "ActivateArchiving" "VideoWallRemoveCameras" "DeviceChangeSettings" "StartPatrolling" "PausePatrolling" "SetMatrixView" "MIPAction:e4852d57-f44e-4514-950b-15ed63908266" "MIPAction:9c75c34f-8fe4-5267-91a4-357d9962ec6c" "MIPAction:47c713ce-920e-5b05-ae25-b7cbc2f66235" "StartPluginOnDevices" "StopPluginOnDevices" "TriggerEventOnRemoteSite" Start actions.
Value map to display names:
StartRecording=Start recording on |
startRuleType | string Enum: "TimeInterval" "Event" "RecurringTime" Start rule type. .
Value map to display names:
TimeInterval=Interval rule type |
stopActions | string Enum: "StopRecording" "PtzMoveToDefault" "PtzMoveToPreset" "SetDeviceOutputState" "StopSetFramerate" "StopSetRecordingFramerate" "StopFeed" "StopRecordAllFrames" "VideoWallSetToCameras" "VideoWallSetToText" "VideoWallSetToPreset" "VideoWallRemoveCameras" "DeviceChangeSettings" "StopPatrolling" "ResumePatrolling" "MIPAction:e4852d57-f44e-4514-950b-15ed63908266" "MIPAction:9c75c34f-8fe4-5267-91a4-357d9962ec6c" "MIPAction:47c713ce-920e-5b05-ae25-b7cbc2f66235" "StartPluginOnDevices" "StopPluginOnDevices" "TriggerEventOnRemoteSite" Stop actions.
Value map to display names:
StopRecording=Stop recording |
stopRuleType | string Enum: "TimeInterval" "Event" "Timer" "None" Stop rule type. .
Value map to display names:
TimeInterval=Interval rule type |
timeOfDayBetween | boolean Within the time period |
withinTimeProfile | boolean Within selected time in |
object |
{- "always": true,
- "daysOfWeek": false,
- "description": "Rule may have a long description",
- "enabled": true,
- "failoverActive": false,
- "failoverInactive": false,
- "name": "Default Start Audio Feed Rule",
- "outsideTimeProfile": false,
- "startActions": "StartFeed",
- "startRuleType": "TimeInterval",
- "stopActions": "StopFeed",
- "stopRuleType": "TimeInterval",
- "timeOfDayBetween": false,
- "withinTimeProfile": false,
- "relations": {
- "self": {
- "type": "rules",
- "id": "43609ca5-bfdd-4238-88ff-686b6657138f"
}
}
}
{- "result": {
- "always": true,
- "daysOfWeek": false,
- "description": "Rule may have a long description",
- "displayName": "Default Start Audio Feed Rule",
- "enabled": true,
- "failoverActive": false,
- "failoverInactive": false,
- "id": "43609ca5-bfdd-4238-88ff-686b6657138f",
- "name": "Default Start Audio Feed Rule",
- "outsideTimeProfile": false,
- "startActions": "StartFeed",
- "startRuleType": "TimeInterval",
- "stopActions": "StopFeed",
- "stopRuleType": "TimeInterval",
- "timeOfDayBetween": false,
- "withinTimeProfile": false,
- "relations": {
- "self": {
- "type": "rules",
- "id": "43609ca5-bfdd-4238-88ff-686b6657138f"
}
}
}
}
Get specific object of Rule
id required | string <guid> Example: 43609ca5-bfdd-4238-88ff-686b6657138f Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "always": true,
- "daysOfWeek": false,
- "description": "Rule may have a long description",
- "displayName": "Default Start Audio Feed Rule",
- "enabled": true,
- "failoverActive": false,
- "failoverInactive": false,
- "id": "43609ca5-bfdd-4238-88ff-686b6657138f",
- "name": "Default Start Audio Feed Rule",
- "outsideTimeProfile": false,
- "startActions": "StartFeed",
- "startRuleType": "TimeInterval",
- "stopActions": "StopFeed",
- "stopRuleType": "TimeInterval",
- "timeOfDayBetween": false,
- "withinTimeProfile": false,
- "relations": {
- "self": {
- "type": "rules",
- "id": "43609ca5-bfdd-4238-88ff-686b6657138f"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Update all fields on Rule
id required | string <guid> Example: 43609ca5-bfdd-4238-88ff-686b6657138f Id of the object |
always | boolean Always |
daysOfWeek | boolean Day(s) of week |
description | string Description |
enabled | boolean |
failoverActive | boolean While failover is active |
failoverInactive | boolean While failover is inactive |
name | string Name |
outsideTimeProfile | boolean Outside selected time in |
startActions | string Enum: "StartRecording" "PtzMoveToDefault" "PtzMoveToPreset" "SetDeviceOutputState" "StartSetFramerate" "StartSetRecordingFramerate" "StartFeed" "RetrieveEdgeStorage" "RetrieveEdgeStorageTimeOrMetadata" "StartRecordAllFrames" "SetBookmark" "CreateLogEntry" "VideoWallSetToCameras" "VideoWallSetToText" "VideoWallSetToPreset" "ActivateArchiving" "VideoWallRemoveCameras" "DeviceChangeSettings" "StartPatrolling" "PausePatrolling" "SetMatrixView" "MIPAction:e4852d57-f44e-4514-950b-15ed63908266" "MIPAction:9c75c34f-8fe4-5267-91a4-357d9962ec6c" "MIPAction:47c713ce-920e-5b05-ae25-b7cbc2f66235" "StartPluginOnDevices" "StopPluginOnDevices" "TriggerEventOnRemoteSite" Start actions.
Value map to display names:
StartRecording=Start recording on |
startRuleType | string Enum: "TimeInterval" "Event" "RecurringTime" Start rule type. .
Value map to display names:
TimeInterval=Interval rule type |
stopActions | string Enum: "StopRecording" "PtzMoveToDefault" "PtzMoveToPreset" "SetDeviceOutputState" "StopSetFramerate" "StopSetRecordingFramerate" "StopFeed" "StopRecordAllFrames" "VideoWallSetToCameras" "VideoWallSetToText" "VideoWallSetToPreset" "VideoWallRemoveCameras" "DeviceChangeSettings" "StopPatrolling" "ResumePatrolling" "MIPAction:e4852d57-f44e-4514-950b-15ed63908266" "MIPAction:9c75c34f-8fe4-5267-91a4-357d9962ec6c" "MIPAction:47c713ce-920e-5b05-ae25-b7cbc2f66235" "StartPluginOnDevices" "StopPluginOnDevices" "TriggerEventOnRemoteSite" Stop actions.
Value map to display names:
StopRecording=Stop recording |
stopRuleType | string Enum: "TimeInterval" "Event" "Timer" "None" Stop rule type. .
Value map to display names:
TimeInterval=Interval rule type |
timeOfDayBetween | boolean Within the time period |
withinTimeProfile | boolean Within selected time in |
object |
{- "always": true,
- "daysOfWeek": false,
- "description": "Rule may have a long description",
- "enabled": true,
- "failoverActive": false,
- "failoverInactive": false,
- "name": "Default Start Audio Feed Rule",
- "outsideTimeProfile": false,
- "startActions": "StartFeed",
- "startRuleType": "TimeInterval",
- "stopActions": "StopFeed",
- "stopRuleType": "TimeInterval",
- "timeOfDayBetween": false,
- "withinTimeProfile": false,
- "relations": {
- "self": {
- "type": "rules",
- "id": "43609ca5-bfdd-4238-88ff-686b6657138f"
}
}
}
{- "data": {
- "always": true,
- "daysOfWeek": false,
- "description": "Rule may have a long description",
- "displayName": "Default Start Audio Feed Rule",
- "enabled": true,
- "failoverActive": false,
- "failoverInactive": false,
- "id": "43609ca5-bfdd-4238-88ff-686b6657138f",
- "name": "Default Start Audio Feed Rule",
- "outsideTimeProfile": false,
- "startActions": "StartFeed",
- "startRuleType": "TimeInterval",
- "stopActions": "StopFeed",
- "stopRuleType": "TimeInterval",
- "timeOfDayBetween": false,
- "withinTimeProfile": false,
- "relations": {
- "self": {
- "type": "rules",
- "id": "43609ca5-bfdd-4238-88ff-686b6657138f"
}
}
}
}
Update provided fields on Rule
id required | string <guid> Example: 43609ca5-bfdd-4238-88ff-686b6657138f Id of the object |
always | boolean Always |
daysOfWeek | boolean Day(s) of week |
description | string Description |
enabled | boolean |
failoverActive | boolean While failover is active |
failoverInactive | boolean While failover is inactive |
name | string Name |
outsideTimeProfile | boolean Outside selected time in |
startActions | string Enum: "StartRecording" "PtzMoveToDefault" "PtzMoveToPreset" "SetDeviceOutputState" "StartSetFramerate" "StartSetRecordingFramerate" "StartFeed" "RetrieveEdgeStorage" "RetrieveEdgeStorageTimeOrMetadata" "StartRecordAllFrames" "SetBookmark" "CreateLogEntry" "VideoWallSetToCameras" "VideoWallSetToText" "VideoWallSetToPreset" "ActivateArchiving" "VideoWallRemoveCameras" "DeviceChangeSettings" "StartPatrolling" "PausePatrolling" "SetMatrixView" "MIPAction:e4852d57-f44e-4514-950b-15ed63908266" "MIPAction:9c75c34f-8fe4-5267-91a4-357d9962ec6c" "MIPAction:47c713ce-920e-5b05-ae25-b7cbc2f66235" "StartPluginOnDevices" "StopPluginOnDevices" "TriggerEventOnRemoteSite" Start actions.
Value map to display names:
StartRecording=Start recording on |
startRuleType | string Enum: "TimeInterval" "Event" "RecurringTime" Start rule type. .
Value map to display names:
TimeInterval=Interval rule type |
stopActions | string Enum: "StopRecording" "PtzMoveToDefault" "PtzMoveToPreset" "SetDeviceOutputState" "StopSetFramerate" "StopSetRecordingFramerate" "StopFeed" "StopRecordAllFrames" "VideoWallSetToCameras" "VideoWallSetToText" "VideoWallSetToPreset" "VideoWallRemoveCameras" "DeviceChangeSettings" "StopPatrolling" "ResumePatrolling" "MIPAction:e4852d57-f44e-4514-950b-15ed63908266" "MIPAction:9c75c34f-8fe4-5267-91a4-357d9962ec6c" "MIPAction:47c713ce-920e-5b05-ae25-b7cbc2f66235" "StartPluginOnDevices" "StopPluginOnDevices" "TriggerEventOnRemoteSite" Stop actions.
Value map to display names:
StopRecording=Stop recording |
stopRuleType | string Enum: "TimeInterval" "Event" "Timer" "None" Stop rule type. .
Value map to display names:
TimeInterval=Interval rule type |
timeOfDayBetween | boolean Within the time period |
withinTimeProfile | boolean Within selected time in |
object |
{- "always": true,
- "daysOfWeek": false,
- "description": "Rule may have a long description",
- "enabled": true,
- "failoverActive": false,
- "failoverInactive": false,
- "name": "Default Start Audio Feed Rule",
- "outsideTimeProfile": false,
- "startActions": "StartFeed",
- "startRuleType": "TimeInterval",
- "stopActions": "StopFeed",
- "stopRuleType": "TimeInterval",
- "timeOfDayBetween": false,
- "withinTimeProfile": false,
- "relations": {
- "self": {
- "type": "rules",
- "id": "43609ca5-bfdd-4238-88ff-686b6657138f"
}
}
}
{- "data": {
- "always": true,
- "daysOfWeek": false,
- "description": "Rule may have a long description",
- "displayName": "Default Start Audio Feed Rule",
- "enabled": true,
- "failoverActive": false,
- "failoverInactive": false,
- "id": "43609ca5-bfdd-4238-88ff-686b6657138f",
- "name": "Default Start Audio Feed Rule",
- "outsideTimeProfile": false,
- "startActions": "StartFeed",
- "startRuleType": "TimeInterval",
- "stopActions": "StopFeed",
- "stopRuleType": "TimeInterval",
- "timeOfDayBetween": false,
- "withinTimeProfile": false,
- "relations": {
- "self": {
- "type": "rules",
- "id": "43609ca5-bfdd-4238-88ff-686b6657138f"
}
}
}
}
{- "array": [
- {
- "description": "TimeProfile may have a long description",
- "displayName": "Day Length Time Profile",
- "id": "da463d61-0d95-42a7-a063-918387743029",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Day Length Time Profile",
- "sunclockGPSCoordinate": "N55 00 E08 50",
- "sunclockSunRise": 0,
- "sunclockSunSet": 0,
- "sunclockTimeZone": "Romance Standard Time",
- "timeProfileType": "Sunclock",
- "timeProfileAppointmentRecur": [
- {
- "allDayEvent": false,
- "appointmentRootId": "450f9a4c-273b-47f0-aea5-b7b36b46a5a0",
- "displayName": "My recurring appointment",
- "endDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "recurrenceDescription": "Occurs every day effective 8/19/2024 until 8/19/2124 from 10:54 AM to 11:54 AM.",
- "recurrenceOccurrenceDuration": "01:00:00",
- "recurrenceOccurrenceStartTime": "10:54:01",
- "recurrencePatternDayOfMonth": 23,
- "recurrencePatternDaysOfWeek": 127,
- "recurrencePatternFrequency": "Daily",
- "recurrencePatternInterval": 1,
- "recurrencePatternMonthOfYear": 9,
- "recurrencePatternOccurrenceOfDayInMonth": "Fourth",
- "recurrencePatternType": "Calculated",
- "recurrenceRangeEndDate": "2022-05-23T09:24:58.9130000+02:00",
- "recurrenceRangeLimit": "LimitByDate",
- "recurrenceRangeMaxOccurrences": 10,
- "recurrenceRangeStartDate": "2022-05-23T09:24:58.9130000+02:00",
- "startDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "subject": "My recurring appointment"
}
], - "timeProfileAppointmentRoot": [
- {
- "allDayEvent": false,
- "displayName": "My appointment",
- "endDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "originalStartDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "startDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "subject": "My appointment"
}
], - "relations": {
- "self": {
- "type": "timeProfiles",
- "id": "da463d61-0d95-42a7-a063-918387743029"
}
}
}
]
}
Time profile
description | string Description |
name | string Name |
sunclockGPSCoordinate | string GPS coordinates. The GIS location for the calculation, impacts day length when far north or far south, for example N40.7083 W74.0086, or 40.7083 -74.0086 |
sunclockSunRise | integer Offset to sunrise in minutes. Offset to calculated sunrise in minutes, from -120 to 120 |
sunclockSunSet | integer Offset to sunset in minutes. Offset to calculated sunset in minutes, from -120 to 120 |
sunclockTimeZone | string Enum: "Dateline Standard Time" "UTC-11" "Aleutian Standard Time" "Hawaiian Standard Time" "Marquesas Standard Time" "Alaskan Standard Time" "UTC-09" "Pacific Standard Time (Mexico)" "UTC-08" "Pacific Standard Time" "US Mountain Standard Time" "Mountain Standard Time (Mexico)" "Mountain Standard Time" "Yukon Standard Time" "Central America Standard Time" "Central Standard Time" "Easter Island Standard Time" "Central Standard Time (Mexico)" "Canada Central Standard Time" "SA Pacific Standard Time" "Eastern Standard Time (Mexico)" "Eastern Standard Time" "Haiti Standard Time" "Cuba Standard Time" "US Eastern Standard Time" "Turks And Caicos Standard Time" "Paraguay Standard Time" "Atlantic Standard Time" "Venezuela Standard Time" "Central Brazilian Standard Time" "SA Western Standard Time" "Pacific SA Standard Time" "Newfoundland Standard Time" "Tocantins Standard Time" "E. South America Standard Time" "SA Eastern Standard Time" "Argentina Standard Time" "Montevideo Standard Time" "Magallanes Standard Time" "Saint Pierre Standard Time" "Bahia Standard Time" "UTC-02" "Greenland Standard Time" "Mid-Atlantic Standard Time" "Azores Standard Time" "Cape Verde Standard Time" "UTC" "GMT Standard Time" "Greenwich Standard Time" "Sao Tome Standard Time" "Morocco Standard Time" "W. Europe Standard Time" "Central Europe Standard Time" "Romance Standard Time" "Central European Standard Time" "W. Central Africa Standard Time" "GTB Standard Time" "Middle East Standard Time" "Egypt Standard Time" "E. Europe Standard Time" "West Bank Standard Time" "South Africa Standard Time" "FLE Standard Time" "Israel Standard Time" "South Sudan Standard Time" "Kaliningrad Standard Time" "Sudan Standard Time" "Libya Standard Time" "Namibia Standard Time" "Jordan Standard Time" "Arabic Standard Time" "Syria Standard Time" "Turkey Standard Time" "Arab Standard Time" "Belarus Standard Time" "Russian Standard Time" "E. Africa Standard Time" "Volgograd Standard Time" "Iran Standard Time" "Arabian Standard Time" "Astrakhan Standard Time" "Azerbaijan Standard Time" "Russia Time Zone 3" "Mauritius Standard Time" "Saratov Standard Time" "Georgian Standard Time" "Caucasus Standard Time" "Afghanistan Standard Time" "West Asia Standard Time" "Qyzylorda Standard Time" "Ekaterinburg Standard Time" "Pakistan Standard Time" "India Standard Time" "Sri Lanka Standard Time" "Nepal Standard Time" "Central Asia Standard Time" "Bangladesh Standard Time" "Omsk Standard Time" "Myanmar Standard Time" "SE Asia Standard Time" "Altai Standard Time" "W. Mongolia Standard Time" "North Asia Standard Time" "N. Central Asia Standard Time" "Tomsk Standard Time" "China Standard Time" "North Asia East Standard Time" "Singapore Standard Time" "W. Australia Standard Time" "Taipei Standard Time" "Ulaanbaatar Standard Time" "Aus Central W. Standard Time" "Transbaikal Standard Time" "Tokyo Standard Time" "North Korea Standard Time" "Korea Standard Time" "Yakutsk Standard Time" "Cen. Australia Standard Time" "AUS Central Standard Time" "E. Australia Standard Time" "AUS Eastern Standard Time" "West Pacific Standard Time" "Tasmania Standard Time" "Vladivostok Standard Time" "Lord Howe Standard Time" "Bougainville Standard Time" "Russia Time Zone 10" "Magadan Standard Time" "Norfolk Standard Time" "Sakhalin Standard Time" "Central Pacific Standard Time" "Russia Time Zone 11" "New Zealand Standard Time" "UTC+12" "Fiji Standard Time" "Kamchatka Standard Time" "Chatham Islands Standard Time" "UTC+13" "Tonga Standard Time" "Samoa Standard Time" "Line Islands Standard Time" Time zone ID. Contains the ID of the time zone, for example Eastern Standard Time.
Value map to display names:
Dateline Standard Time=(UTC-12:00) International Date Line West |
Array of objects (timeProfileAppointmentRecur) | |
Array of objects (timeProfileAppointmentRoot) | |
object |
{- "description": "TimeProfile may have a long description",
- "name": "Day Length Time Profile",
- "sunclockGPSCoordinate": "N55 00 E08 50",
- "sunclockSunRise": 0,
- "sunclockSunSet": 0,
- "sunclockTimeZone": "Romance Standard Time",
- "timeProfileAppointmentRecur": [
- {
- "recurrenceOccurrenceDuration": "01:00:00",
- "recurrenceOccurrenceStartTime": "10:54:01",
- "recurrencePatternDayOfMonth": 23,
- "recurrencePatternDaysOfWeek": 127,
- "recurrencePatternFrequency": "Daily",
- "recurrencePatternInterval": 1,
- "recurrencePatternMonthOfYear": 9,
- "recurrencePatternOccurrenceOfDayInMonth": "Fourth",
- "recurrencePatternType": "Calculated",
- "recurrenceRangeEndDate": "2022-05-23T09:24:58.9130000+02:00",
- "recurrenceRangeLimit": "LimitByDate",
- "recurrenceRangeMaxOccurrences": 10,
- "recurrenceRangeStartDate": "2022-05-23T09:24:58.9130000+02:00",
- "subject": "My recurring appointment"
}
], - "timeProfileAppointmentRoot": [
- {
- "allDayEvent": false,
- "endDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "startDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "subject": "My appointment"
}
], - "relations": {
- "self": {
- "type": "timeProfiles",
- "id": "da463d61-0d95-42a7-a063-918387743029"
}
}
}
{- "result": {
- "description": "TimeProfile may have a long description",
- "displayName": "Day Length Time Profile",
- "id": "da463d61-0d95-42a7-a063-918387743029",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Day Length Time Profile",
- "sunclockGPSCoordinate": "N55 00 E08 50",
- "sunclockSunRise": 0,
- "sunclockSunSet": 0,
- "sunclockTimeZone": "Romance Standard Time",
- "timeProfileType": "Sunclock",
- "timeProfileAppointmentRecur": [
- {
- "allDayEvent": false,
- "appointmentRootId": "450f9a4c-273b-47f0-aea5-b7b36b46a5a0",
- "displayName": "My recurring appointment",
- "endDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "recurrenceDescription": "Occurs every day effective 8/19/2024 until 8/19/2124 from 10:54 AM to 11:54 AM.",
- "recurrenceOccurrenceDuration": "01:00:00",
- "recurrenceOccurrenceStartTime": "10:54:01",
- "recurrencePatternDayOfMonth": 23,
- "recurrencePatternDaysOfWeek": 127,
- "recurrencePatternFrequency": "Daily",
- "recurrencePatternInterval": 1,
- "recurrencePatternMonthOfYear": 9,
- "recurrencePatternOccurrenceOfDayInMonth": "Fourth",
- "recurrencePatternType": "Calculated",
- "recurrenceRangeEndDate": "2022-05-23T09:24:58.9130000+02:00",
- "recurrenceRangeLimit": "LimitByDate",
- "recurrenceRangeMaxOccurrences": 10,
- "recurrenceRangeStartDate": "2022-05-23T09:24:58.9130000+02:00",
- "startDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "subject": "My recurring appointment"
}
], - "timeProfileAppointmentRoot": [
- {
- "allDayEvent": false,
- "displayName": "My appointment",
- "endDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "originalStartDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "startDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "subject": "My appointment"
}
], - "relations": {
- "self": {
- "type": "timeProfiles",
- "id": "da463d61-0d95-42a7-a063-918387743029"
}
}
}
}
Time profile
id required | string <guid> Example: da463d61-0d95-42a7-a063-918387743029 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "description": "TimeProfile may have a long description",
- "displayName": "Day Length Time Profile",
- "id": "da463d61-0d95-42a7-a063-918387743029",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Day Length Time Profile",
- "sunclockGPSCoordinate": "N55 00 E08 50",
- "sunclockSunRise": 0,
- "sunclockSunSet": 0,
- "sunclockTimeZone": "Romance Standard Time",
- "timeProfileType": "Sunclock",
- "timeProfileAppointmentRecur": [
- {
- "allDayEvent": false,
- "appointmentRootId": "450f9a4c-273b-47f0-aea5-b7b36b46a5a0",
- "displayName": "My recurring appointment",
- "endDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "recurrenceDescription": "Occurs every day effective 8/19/2024 until 8/19/2124 from 10:54 AM to 11:54 AM.",
- "recurrenceOccurrenceDuration": "01:00:00",
- "recurrenceOccurrenceStartTime": "10:54:01",
- "recurrencePatternDayOfMonth": 23,
- "recurrencePatternDaysOfWeek": 127,
- "recurrencePatternFrequency": "Daily",
- "recurrencePatternInterval": 1,
- "recurrencePatternMonthOfYear": 9,
- "recurrencePatternOccurrenceOfDayInMonth": "Fourth",
- "recurrencePatternType": "Calculated",
- "recurrenceRangeEndDate": "2022-05-23T09:24:58.9130000+02:00",
- "recurrenceRangeLimit": "LimitByDate",
- "recurrenceRangeMaxOccurrences": 10,
- "recurrenceRangeStartDate": "2022-05-23T09:24:58.9130000+02:00",
- "startDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "subject": "My recurring appointment"
}
], - "timeProfileAppointmentRoot": [
- {
- "allDayEvent": false,
- "displayName": "My appointment",
- "endDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "originalStartDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "startDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "subject": "My appointment"
}
], - "relations": {
- "self": {
- "type": "timeProfiles",
- "id": "da463d61-0d95-42a7-a063-918387743029"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Time profile
id required | string <guid> Example: da463d61-0d95-42a7-a063-918387743029 Id of the object |
description | string Description |
name | string Name |
sunclockGPSCoordinate | string GPS coordinates. The GIS location for the calculation, impacts day length when far north or far south, for example N40.7083 W74.0086, or 40.7083 -74.0086 |
sunclockSunRise | integer Offset to sunrise in minutes. Offset to calculated sunrise in minutes, from -120 to 120 |
sunclockSunSet | integer Offset to sunset in minutes. Offset to calculated sunset in minutes, from -120 to 120 |
sunclockTimeZone | string Enum: "Dateline Standard Time" "UTC-11" "Aleutian Standard Time" "Hawaiian Standard Time" "Marquesas Standard Time" "Alaskan Standard Time" "UTC-09" "Pacific Standard Time (Mexico)" "UTC-08" "Pacific Standard Time" "US Mountain Standard Time" "Mountain Standard Time (Mexico)" "Mountain Standard Time" "Yukon Standard Time" "Central America Standard Time" "Central Standard Time" "Easter Island Standard Time" "Central Standard Time (Mexico)" "Canada Central Standard Time" "SA Pacific Standard Time" "Eastern Standard Time (Mexico)" "Eastern Standard Time" "Haiti Standard Time" "Cuba Standard Time" "US Eastern Standard Time" "Turks And Caicos Standard Time" "Paraguay Standard Time" "Atlantic Standard Time" "Venezuela Standard Time" "Central Brazilian Standard Time" "SA Western Standard Time" "Pacific SA Standard Time" "Newfoundland Standard Time" "Tocantins Standard Time" "E. South America Standard Time" "SA Eastern Standard Time" "Argentina Standard Time" "Montevideo Standard Time" "Magallanes Standard Time" "Saint Pierre Standard Time" "Bahia Standard Time" "UTC-02" "Greenland Standard Time" "Mid-Atlantic Standard Time" "Azores Standard Time" "Cape Verde Standard Time" "UTC" "GMT Standard Time" "Greenwich Standard Time" "Sao Tome Standard Time" "Morocco Standard Time" "W. Europe Standard Time" "Central Europe Standard Time" "Romance Standard Time" "Central European Standard Time" "W. Central Africa Standard Time" "GTB Standard Time" "Middle East Standard Time" "Egypt Standard Time" "E. Europe Standard Time" "West Bank Standard Time" "South Africa Standard Time" "FLE Standard Time" "Israel Standard Time" "South Sudan Standard Time" "Kaliningrad Standard Time" "Sudan Standard Time" "Libya Standard Time" "Namibia Standard Time" "Jordan Standard Time" "Arabic Standard Time" "Syria Standard Time" "Turkey Standard Time" "Arab Standard Time" "Belarus Standard Time" "Russian Standard Time" "E. Africa Standard Time" "Volgograd Standard Time" "Iran Standard Time" "Arabian Standard Time" "Astrakhan Standard Time" "Azerbaijan Standard Time" "Russia Time Zone 3" "Mauritius Standard Time" "Saratov Standard Time" "Georgian Standard Time" "Caucasus Standard Time" "Afghanistan Standard Time" "West Asia Standard Time" "Qyzylorda Standard Time" "Ekaterinburg Standard Time" "Pakistan Standard Time" "India Standard Time" "Sri Lanka Standard Time" "Nepal Standard Time" "Central Asia Standard Time" "Bangladesh Standard Time" "Omsk Standard Time" "Myanmar Standard Time" "SE Asia Standard Time" "Altai Standard Time" "W. Mongolia Standard Time" "North Asia Standard Time" "N. Central Asia Standard Time" "Tomsk Standard Time" "China Standard Time" "North Asia East Standard Time" "Singapore Standard Time" "W. Australia Standard Time" "Taipei Standard Time" "Ulaanbaatar Standard Time" "Aus Central W. Standard Time" "Transbaikal Standard Time" "Tokyo Standard Time" "North Korea Standard Time" "Korea Standard Time" "Yakutsk Standard Time" "Cen. Australia Standard Time" "AUS Central Standard Time" "E. Australia Standard Time" "AUS Eastern Standard Time" "West Pacific Standard Time" "Tasmania Standard Time" "Vladivostok Standard Time" "Lord Howe Standard Time" "Bougainville Standard Time" "Russia Time Zone 10" "Magadan Standard Time" "Norfolk Standard Time" "Sakhalin Standard Time" "Central Pacific Standard Time" "Russia Time Zone 11" "New Zealand Standard Time" "UTC+12" "Fiji Standard Time" "Kamchatka Standard Time" "Chatham Islands Standard Time" "UTC+13" "Tonga Standard Time" "Samoa Standard Time" "Line Islands Standard Time" Time zone ID. Contains the ID of the time zone, for example Eastern Standard Time.
Value map to display names:
Dateline Standard Time=(UTC-12:00) International Date Line West |
Array of objects (timeProfileAppointmentRecur) | |
Array of objects (timeProfileAppointmentRoot) | |
object |
{- "description": "TimeProfile may have a long description",
- "name": "Day Length Time Profile",
- "sunclockGPSCoordinate": "N55 00 E08 50",
- "sunclockSunRise": 0,
- "sunclockSunSet": 0,
- "sunclockTimeZone": "Romance Standard Time",
- "timeProfileAppointmentRecur": [
- {
- "recurrenceOccurrenceDuration": "01:00:00",
- "recurrenceOccurrenceStartTime": "10:54:01",
- "recurrencePatternDayOfMonth": 23,
- "recurrencePatternDaysOfWeek": 127,
- "recurrencePatternFrequency": "Daily",
- "recurrencePatternInterval": 1,
- "recurrencePatternMonthOfYear": 9,
- "recurrencePatternOccurrenceOfDayInMonth": "Fourth",
- "recurrencePatternType": "Calculated",
- "recurrenceRangeEndDate": "2022-05-23T09:24:58.9130000+02:00",
- "recurrenceRangeLimit": "LimitByDate",
- "recurrenceRangeMaxOccurrences": 10,
- "recurrenceRangeStartDate": "2022-05-23T09:24:58.9130000+02:00",
- "subject": "My recurring appointment"
}
], - "timeProfileAppointmentRoot": [
- {
- "allDayEvent": false,
- "endDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "startDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "subject": "My appointment"
}
], - "relations": {
- "self": {
- "type": "timeProfiles",
- "id": "da463d61-0d95-42a7-a063-918387743029"
}
}
}
{- "data": {
- "description": "TimeProfile may have a long description",
- "displayName": "Day Length Time Profile",
- "id": "da463d61-0d95-42a7-a063-918387743029",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Day Length Time Profile",
- "sunclockGPSCoordinate": "N55 00 E08 50",
- "sunclockSunRise": 0,
- "sunclockSunSet": 0,
- "sunclockTimeZone": "Romance Standard Time",
- "timeProfileType": "Sunclock",
- "timeProfileAppointmentRecur": [
- {
- "allDayEvent": false,
- "appointmentRootId": "450f9a4c-273b-47f0-aea5-b7b36b46a5a0",
- "displayName": "My recurring appointment",
- "endDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "recurrenceDescription": "Occurs every day effective 8/19/2024 until 8/19/2124 from 10:54 AM to 11:54 AM.",
- "recurrenceOccurrenceDuration": "01:00:00",
- "recurrenceOccurrenceStartTime": "10:54:01",
- "recurrencePatternDayOfMonth": 23,
- "recurrencePatternDaysOfWeek": 127,
- "recurrencePatternFrequency": "Daily",
- "recurrencePatternInterval": 1,
- "recurrencePatternMonthOfYear": 9,
- "recurrencePatternOccurrenceOfDayInMonth": "Fourth",
- "recurrencePatternType": "Calculated",
- "recurrenceRangeEndDate": "2022-05-23T09:24:58.9130000+02:00",
- "recurrenceRangeLimit": "LimitByDate",
- "recurrenceRangeMaxOccurrences": 10,
- "recurrenceRangeStartDate": "2022-05-23T09:24:58.9130000+02:00",
- "startDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "subject": "My recurring appointment"
}
], - "timeProfileAppointmentRoot": [
- {
- "allDayEvent": false,
- "displayName": "My appointment",
- "endDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "originalStartDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "startDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "subject": "My appointment"
}
], - "relations": {
- "self": {
- "type": "timeProfiles",
- "id": "da463d61-0d95-42a7-a063-918387743029"
}
}
}
}
Time profile
id required | string <guid> Example: da463d61-0d95-42a7-a063-918387743029 Id of the object |
description | string Description |
name | string Name |
sunclockGPSCoordinate | string GPS coordinates. The GIS location for the calculation, impacts day length when far north or far south, for example N40.7083 W74.0086, or 40.7083 -74.0086 |
sunclockSunRise | integer Offset to sunrise in minutes. Offset to calculated sunrise in minutes, from -120 to 120 |
sunclockSunSet | integer Offset to sunset in minutes. Offset to calculated sunset in minutes, from -120 to 120 |
sunclockTimeZone | string Enum: "Dateline Standard Time" "UTC-11" "Aleutian Standard Time" "Hawaiian Standard Time" "Marquesas Standard Time" "Alaskan Standard Time" "UTC-09" "Pacific Standard Time (Mexico)" "UTC-08" "Pacific Standard Time" "US Mountain Standard Time" "Mountain Standard Time (Mexico)" "Mountain Standard Time" "Yukon Standard Time" "Central America Standard Time" "Central Standard Time" "Easter Island Standard Time" "Central Standard Time (Mexico)" "Canada Central Standard Time" "SA Pacific Standard Time" "Eastern Standard Time (Mexico)" "Eastern Standard Time" "Haiti Standard Time" "Cuba Standard Time" "US Eastern Standard Time" "Turks And Caicos Standard Time" "Paraguay Standard Time" "Atlantic Standard Time" "Venezuela Standard Time" "Central Brazilian Standard Time" "SA Western Standard Time" "Pacific SA Standard Time" "Newfoundland Standard Time" "Tocantins Standard Time" "E. South America Standard Time" "SA Eastern Standard Time" "Argentina Standard Time" "Montevideo Standard Time" "Magallanes Standard Time" "Saint Pierre Standard Time" "Bahia Standard Time" "UTC-02" "Greenland Standard Time" "Mid-Atlantic Standard Time" "Azores Standard Time" "Cape Verde Standard Time" "UTC" "GMT Standard Time" "Greenwich Standard Time" "Sao Tome Standard Time" "Morocco Standard Time" "W. Europe Standard Time" "Central Europe Standard Time" "Romance Standard Time" "Central European Standard Time" "W. Central Africa Standard Time" "GTB Standard Time" "Middle East Standard Time" "Egypt Standard Time" "E. Europe Standard Time" "West Bank Standard Time" "South Africa Standard Time" "FLE Standard Time" "Israel Standard Time" "South Sudan Standard Time" "Kaliningrad Standard Time" "Sudan Standard Time" "Libya Standard Time" "Namibia Standard Time" "Jordan Standard Time" "Arabic Standard Time" "Syria Standard Time" "Turkey Standard Time" "Arab Standard Time" "Belarus Standard Time" "Russian Standard Time" "E. Africa Standard Time" "Volgograd Standard Time" "Iran Standard Time" "Arabian Standard Time" "Astrakhan Standard Time" "Azerbaijan Standard Time" "Russia Time Zone 3" "Mauritius Standard Time" "Saratov Standard Time" "Georgian Standard Time" "Caucasus Standard Time" "Afghanistan Standard Time" "West Asia Standard Time" "Qyzylorda Standard Time" "Ekaterinburg Standard Time" "Pakistan Standard Time" "India Standard Time" "Sri Lanka Standard Time" "Nepal Standard Time" "Central Asia Standard Time" "Bangladesh Standard Time" "Omsk Standard Time" "Myanmar Standard Time" "SE Asia Standard Time" "Altai Standard Time" "W. Mongolia Standard Time" "North Asia Standard Time" "N. Central Asia Standard Time" "Tomsk Standard Time" "China Standard Time" "North Asia East Standard Time" "Singapore Standard Time" "W. Australia Standard Time" "Taipei Standard Time" "Ulaanbaatar Standard Time" "Aus Central W. Standard Time" "Transbaikal Standard Time" "Tokyo Standard Time" "North Korea Standard Time" "Korea Standard Time" "Yakutsk Standard Time" "Cen. Australia Standard Time" "AUS Central Standard Time" "E. Australia Standard Time" "AUS Eastern Standard Time" "West Pacific Standard Time" "Tasmania Standard Time" "Vladivostok Standard Time" "Lord Howe Standard Time" "Bougainville Standard Time" "Russia Time Zone 10" "Magadan Standard Time" "Norfolk Standard Time" "Sakhalin Standard Time" "Central Pacific Standard Time" "Russia Time Zone 11" "New Zealand Standard Time" "UTC+12" "Fiji Standard Time" "Kamchatka Standard Time" "Chatham Islands Standard Time" "UTC+13" "Tonga Standard Time" "Samoa Standard Time" "Line Islands Standard Time" Time zone ID. Contains the ID of the time zone, for example Eastern Standard Time.
Value map to display names:
Dateline Standard Time=(UTC-12:00) International Date Line West |
Array of objects (timeProfileAppointmentRecur) | |
Array of objects (timeProfileAppointmentRoot) | |
object |
{- "description": "TimeProfile may have a long description",
- "name": "Day Length Time Profile",
- "sunclockGPSCoordinate": "N55 00 E08 50",
- "sunclockSunRise": 0,
- "sunclockSunSet": 0,
- "sunclockTimeZone": "Romance Standard Time",
- "timeProfileAppointmentRecur": [
- {
- "recurrenceOccurrenceDuration": "01:00:00",
- "recurrenceOccurrenceStartTime": "10:54:01",
- "recurrencePatternDayOfMonth": 23,
- "recurrencePatternDaysOfWeek": 127,
- "recurrencePatternFrequency": "Daily",
- "recurrencePatternInterval": 1,
- "recurrencePatternMonthOfYear": 9,
- "recurrencePatternOccurrenceOfDayInMonth": "Fourth",
- "recurrencePatternType": "Calculated",
- "recurrenceRangeEndDate": "2022-05-23T09:24:58.9130000+02:00",
- "recurrenceRangeLimit": "LimitByDate",
- "recurrenceRangeMaxOccurrences": 10,
- "recurrenceRangeStartDate": "2022-05-23T09:24:58.9130000+02:00",
- "subject": "My recurring appointment"
}
], - "timeProfileAppointmentRoot": [
- {
- "allDayEvent": false,
- "endDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "startDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "subject": "My appointment"
}
], - "relations": {
- "self": {
- "type": "timeProfiles",
- "id": "da463d61-0d95-42a7-a063-918387743029"
}
}
}
{- "data": {
- "description": "TimeProfile may have a long description",
- "displayName": "Day Length Time Profile",
- "id": "da463d61-0d95-42a7-a063-918387743029",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Day Length Time Profile",
- "sunclockGPSCoordinate": "N55 00 E08 50",
- "sunclockSunRise": 0,
- "sunclockSunSet": 0,
- "sunclockTimeZone": "Romance Standard Time",
- "timeProfileType": "Sunclock",
- "timeProfileAppointmentRecur": [
- {
- "allDayEvent": false,
- "appointmentRootId": "450f9a4c-273b-47f0-aea5-b7b36b46a5a0",
- "displayName": "My recurring appointment",
- "endDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "recurrenceDescription": "Occurs every day effective 8/19/2024 until 8/19/2124 from 10:54 AM to 11:54 AM.",
- "recurrenceOccurrenceDuration": "01:00:00",
- "recurrenceOccurrenceStartTime": "10:54:01",
- "recurrencePatternDayOfMonth": 23,
- "recurrencePatternDaysOfWeek": 127,
- "recurrencePatternFrequency": "Daily",
- "recurrencePatternInterval": 1,
- "recurrencePatternMonthOfYear": 9,
- "recurrencePatternOccurrenceOfDayInMonth": "Fourth",
- "recurrencePatternType": "Calculated",
- "recurrenceRangeEndDate": "2022-05-23T09:24:58.9130000+02:00",
- "recurrenceRangeLimit": "LimitByDate",
- "recurrenceRangeMaxOccurrences": 10,
- "recurrenceRangeStartDate": "2022-05-23T09:24:58.9130000+02:00",
- "startDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "subject": "My recurring appointment"
}
], - "timeProfileAppointmentRoot": [
- {
- "allDayEvent": false,
- "displayName": "My appointment",
- "endDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "originalStartDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "startDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "subject": "My appointment"
}
], - "relations": {
- "self": {
- "type": "timeProfiles",
- "id": "da463d61-0d95-42a7-a063-918387743029"
}
}
}
}
Time profile
id required | string <guid> Example: da463d61-0d95-42a7-a063-918387743029 Id of the object |
task required | string Example: task=AddRecurringAppointment task=AddAppointment, or task=AddRecurringAppointment AddAppointment - Add appointment AddRecurringAppointment - Add recurring appointment |
allDayEvent | boolean All day event |
endDateTime | string <date-time-fraction> End time |
startDateTime | string <date-time-fraction> Start time |
subject | string Subject |
{- "allDayEvent": true,
- "endDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "startDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "subject": "string"
}
{- "result": {
- "allDayEvent": false,
- "displayName": "Day Length Time Profile",
- "endDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "startDateTime": "2022-05-23T09:24:58.9130000+02:00",
- "subject": "Selected time"
}
}
{- "array": [
- {
- "canChangePassword": true,
- "claims": [
- {
- "claimName": "vms_role",
- "claimProvider": "a873a5bb-ad32-47cb-bebc-6a95f9252e90",
- "claimValue": "admin",
- "displayName": "admin"
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "BasicUser may have a long description",
- "displayName": "Bob",
- "forcePasswordChange": false,
- "id": "3d7bc850-a0a9-465e-a362-b4d4c07c09b3",
- "isExternal": false,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "lockoutEnd": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bob",
- "sid": "083BDFD6-F583-4F6B-BDFE-5819D287C243",
- "status": "Enabled",
- "relations": {
- "self": {
- "type": "basicUsers",
- "id": "3d7bc850-a0a9-465e-a362-b4d4c07c09b3"
}
}
}
]
}
Basic user
canChangePassword | boolean Can change password |
description | string Description |
forcePasswordChange | boolean Force change password |
status | string Enum: "Enabled" "LockedOutByAdmin" "LockedOutBySystem" Status.
Value map to display names:
Enabled=Enabled |
object |
{- "canChangePassword": true,
- "description": "BasicUser may have a long description",
- "forcePasswordChange": false,
- "status": "Enabled",
- "relations": {
- "self": {
- "type": "basicUsers",
- "id": "3d7bc850-a0a9-465e-a362-b4d4c07c09b3"
}
}
}
{- "result": {
- "canChangePassword": true,
- "claims": [
- {
- "claimName": "vms_role",
- "claimProvider": "a873a5bb-ad32-47cb-bebc-6a95f9252e90",
- "claimValue": "admin",
- "displayName": "admin"
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "BasicUser may have a long description",
- "displayName": "Bob",
- "forcePasswordChange": false,
- "id": "3d7bc850-a0a9-465e-a362-b4d4c07c09b3",
- "isExternal": false,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "lockoutEnd": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bob",
- "sid": "083BDFD6-F583-4F6B-BDFE-5819D287C243",
- "status": "Enabled",
- "relations": {
- "self": {
- "type": "basicUsers",
- "id": "3d7bc850-a0a9-465e-a362-b4d4c07c09b3"
}
}
}
}
Basic user
id required | string <guid> Example: 3d7bc850-a0a9-465e-a362-b4d4c07c09b3 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "canChangePassword": true,
- "claims": [
- {
- "claimName": "vms_role",
- "claimProvider": "a873a5bb-ad32-47cb-bebc-6a95f9252e90",
- "claimValue": "admin",
- "displayName": "admin"
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "BasicUser may have a long description",
- "displayName": "Bob",
- "forcePasswordChange": false,
- "id": "3d7bc850-a0a9-465e-a362-b4d4c07c09b3",
- "isExternal": false,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "lockoutEnd": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bob",
- "sid": "083BDFD6-F583-4F6B-BDFE-5819D287C243",
- "status": "Enabled",
- "relations": {
- "self": {
- "type": "basicUsers",
- "id": "3d7bc850-a0a9-465e-a362-b4d4c07c09b3"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Basic user
id required | string <guid> Example: 3d7bc850-a0a9-465e-a362-b4d4c07c09b3 Id of the object |
canChangePassword | boolean Can change password |
description | string Description |
forcePasswordChange | boolean Force change password |
status | string Enum: "Enabled" "LockedOutByAdmin" "LockedOutBySystem" Status.
Value map to display names:
Enabled=Enabled |
object |
{- "canChangePassword": true,
- "description": "BasicUser may have a long description",
- "forcePasswordChange": false,
- "status": "Enabled",
- "relations": {
- "self": {
- "type": "basicUsers",
- "id": "3d7bc850-a0a9-465e-a362-b4d4c07c09b3"
}
}
}
{- "data": {
- "canChangePassword": true,
- "claims": [
- {
- "claimName": "vms_role",
- "claimProvider": "a873a5bb-ad32-47cb-bebc-6a95f9252e90",
- "claimValue": "admin",
- "displayName": "admin"
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "BasicUser may have a long description",
- "displayName": "Bob",
- "forcePasswordChange": false,
- "id": "3d7bc850-a0a9-465e-a362-b4d4c07c09b3",
- "isExternal": false,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "lockoutEnd": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bob",
- "sid": "083BDFD6-F583-4F6B-BDFE-5819D287C243",
- "status": "Enabled",
- "relations": {
- "self": {
- "type": "basicUsers",
- "id": "3d7bc850-a0a9-465e-a362-b4d4c07c09b3"
}
}
}
}
Basic user
id required | string <guid> Example: 3d7bc850-a0a9-465e-a362-b4d4c07c09b3 Id of the object |
canChangePassword | boolean Can change password |
description | string Description |
forcePasswordChange | boolean Force change password |
status | string Enum: "Enabled" "LockedOutByAdmin" "LockedOutBySystem" Status.
Value map to display names:
Enabled=Enabled |
object |
{- "canChangePassword": true,
- "description": "BasicUser may have a long description",
- "forcePasswordChange": false,
- "status": "Enabled",
- "relations": {
- "self": {
- "type": "basicUsers",
- "id": "3d7bc850-a0a9-465e-a362-b4d4c07c09b3"
}
}
}
{- "data": {
- "canChangePassword": true,
- "claims": [
- {
- "claimName": "vms_role",
- "claimProvider": "a873a5bb-ad32-47cb-bebc-6a95f9252e90",
- "claimValue": "admin",
- "displayName": "admin"
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "BasicUser may have a long description",
- "displayName": "Bob",
- "forcePasswordChange": false,
- "id": "3d7bc850-a0a9-465e-a362-b4d4c07c09b3",
- "isExternal": false,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "lockoutEnd": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bob",
- "sid": "083BDFD6-F583-4F6B-BDFE-5819D287C243",
- "status": "Enabled",
- "relations": {
- "self": {
- "type": "basicUsers",
- "id": "3d7bc850-a0a9-465e-a362-b4d4c07c09b3"
}
}
}
}
Basic user
id required | string <guid> Example: 3d7bc850-a0a9-465e-a362-b4d4c07c09b3 Id of the object |
task required | string Example: task=ChangePasswordBasicUser task=ChangePasswordBasicUser ChangePasswordBasicUser - Change basic user password |
password | string <password> Password |
{- "password": "pa$$word"
}
{- "result": {
- "displayName": "Bob",
- "password": "string"
}
}
Basic user
id required | string <guid> Example: 3d7bc850-a0a9-465e-a362-b4d4c07c09b3 Id of the basicUser object |
{- "array": [
- {
- "claimName": "vms_role",
- "claimProvider": "a873a5bb-ad32-47cb-bebc-6a95f9252e90",
- "claimValue": "admin",
- "displayName": "admin"
}
]
}
{- "array": [
- {
- "allowMobileClientLogOn": true,
- "allowSmartClientLogOn": true,
- "allowWebClientLogOn": true,
- "claims": [
- {
- "claimName": "vms_role",
- "claimProvider": "a873a5bb-ad32-47cb-bebc-6a95f9252e90",
- "claimValue": "admin",
- "displayName": "admin"
}
], - "description": "Role may have a long description",
- "displayName": "Default Role",
- "dualAuthorizationRequired": false,
- "id": "4a6c31be-631c-48a7-b5bd-f8d65291c8d8",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "makeUsersAnonymousDuringPTZSession": false,
- "name": "Default Role",
- "roleType": "UserDefined",
- "users": [
- {
- "accountName": "Bob",
- "description": "User may have a long description",
- "displayName": "Bob",
- "domain": "[BASIC]",
- "identityType": "BasicUser",
- "memberOf": "string",
- "memberOfRoles": "string",
- "members": "string",
- "sid": "083BDFD6-F583-4F6B-BDFE-5819D287C243",
- "relations": {
- "self": {
- "type": "users",
- "id": "71456a60-cf20-4764-a7a0-a1f89ca56546"
}, - "parent": {
- "type": "users",
- "id": "71456a60-cf20-4764-a7a0-a1f89ca56546"
}
}
}
], - "relations": {
- "self": {
- "type": "roles",
- "id": "4a6c31be-631c-48a7-b5bd-f8d65291c8d8"
}
}
}
]
}
Add new roles, or perform a task
allowMobileClientLogOn | boolean Allow Mobile Client login. Allow members of the role to log in from a Mobile Client |
allowSmartClientLogOn | boolean Allow Smart Client login. Allow members of the role to log in from a Smart Client |
allowWebClientLogOn | boolean Allow Web Client login. Allow members of the role to log in from a Web Client |
description | string Description |
dualAuthorizationRequired | boolean Login authorization required |
makeUsersAnonymousDuringPTZSession | boolean Make users anonymous during PTZ session |
name | string Name |
object |
{- "allowMobileClientLogOn": true,
- "allowSmartClientLogOn": true,
- "allowWebClientLogOn": true,
- "description": "Role may have a long description",
- "dualAuthorizationRequired": false,
- "makeUsersAnonymousDuringPTZSession": false,
- "name": "Default Role",
- "relations": {
- "self": {
- "type": "roles",
- "id": "4a6c31be-631c-48a7-b5bd-f8d65291c8d8"
}
}
}
{- "result": {
- "description": "RoleFolder may have a long description",
- "displayName": "Roles",
- "itemSelection": "Role[1f30d14b-ba91-4e8a-8838-eda17931f8fc]",
- "name": "string"
}
}
Get specific object of Role
id required | string <guid> Example: 4a6c31be-631c-48a7-b5bd-f8d65291c8d8 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "allowMobileClientLogOn": true,
- "allowSmartClientLogOn": true,
- "allowWebClientLogOn": true,
- "claims": [
- {
- "claimName": "vms_role",
- "claimProvider": "a873a5bb-ad32-47cb-bebc-6a95f9252e90",
- "claimValue": "admin",
- "displayName": "admin"
}
], - "description": "Role may have a long description",
- "displayName": "Default Role",
- "dualAuthorizationRequired": false,
- "id": "4a6c31be-631c-48a7-b5bd-f8d65291c8d8",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "makeUsersAnonymousDuringPTZSession": false,
- "name": "Default Role",
- "roleType": "UserDefined",
- "users": [
- {
- "accountName": "Bob",
- "description": "User may have a long description",
- "displayName": "Bob",
- "domain": "[BASIC]",
- "identityType": "BasicUser",
- "memberOf": "string",
- "memberOfRoles": "string",
- "members": "string",
- "sid": "083BDFD6-F583-4F6B-BDFE-5819D287C243",
- "relations": {
- "self": {
- "type": "users",
- "id": "71456a60-cf20-4764-a7a0-a1f89ca56546"
}, - "parent": {
- "type": "users",
- "id": "71456a60-cf20-4764-a7a0-a1f89ca56546"
}
}
}
], - "relations": {
- "self": {
- "type": "roles",
- "id": "4a6c31be-631c-48a7-b5bd-f8d65291c8d8"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Update all fields on Role
id required | string <guid> Example: 4a6c31be-631c-48a7-b5bd-f8d65291c8d8 Id of the object |
allowMobileClientLogOn | boolean Allow Mobile Client login. Allow members of the role to log in from a Mobile Client |
allowSmartClientLogOn | boolean Allow Smart Client login. Allow members of the role to log in from a Smart Client |
allowWebClientLogOn | boolean Allow Web Client login. Allow members of the role to log in from a Web Client |
description | string Description |
dualAuthorizationRequired | boolean Login authorization required |
makeUsersAnonymousDuringPTZSession | boolean Make users anonymous during PTZ session |
name | string Name |
object |
{- "allowMobileClientLogOn": true,
- "allowSmartClientLogOn": true,
- "allowWebClientLogOn": true,
- "description": "Role may have a long description",
- "dualAuthorizationRequired": false,
- "makeUsersAnonymousDuringPTZSession": false,
- "name": "Default Role",
- "relations": {
- "self": {
- "type": "roles",
- "id": "4a6c31be-631c-48a7-b5bd-f8d65291c8d8"
}
}
}
{- "data": {
- "allowMobileClientLogOn": true,
- "allowSmartClientLogOn": true,
- "allowWebClientLogOn": true,
- "claims": [
- {
- "claimName": "vms_role",
- "claimProvider": "a873a5bb-ad32-47cb-bebc-6a95f9252e90",
- "claimValue": "admin",
- "displayName": "admin"
}
], - "description": "Role may have a long description",
- "displayName": "Default Role",
- "dualAuthorizationRequired": false,
- "id": "4a6c31be-631c-48a7-b5bd-f8d65291c8d8",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "makeUsersAnonymousDuringPTZSession": false,
- "name": "Default Role",
- "roleType": "UserDefined",
- "users": [
- {
- "accountName": "Bob",
- "description": "User may have a long description",
- "displayName": "Bob",
- "domain": "[BASIC]",
- "identityType": "BasicUser",
- "memberOf": "string",
- "memberOfRoles": "string",
- "members": "string",
- "sid": "083BDFD6-F583-4F6B-BDFE-5819D287C243",
- "relations": {
- "self": {
- "type": "users",
- "id": "71456a60-cf20-4764-a7a0-a1f89ca56546"
}, - "parent": {
- "type": "users",
- "id": "71456a60-cf20-4764-a7a0-a1f89ca56546"
}
}
}
], - "relations": {
- "self": {
- "type": "roles",
- "id": "4a6c31be-631c-48a7-b5bd-f8d65291c8d8"
}
}
}
}
Update provided fields on Role
id required | string <guid> Example: 4a6c31be-631c-48a7-b5bd-f8d65291c8d8 Id of the object |
allowMobileClientLogOn | boolean Allow Mobile Client login. Allow members of the role to log in from a Mobile Client |
allowSmartClientLogOn | boolean Allow Smart Client login. Allow members of the role to log in from a Smart Client |
allowWebClientLogOn | boolean Allow Web Client login. Allow members of the role to log in from a Web Client |
description | string Description |
dualAuthorizationRequired | boolean Login authorization required |
makeUsersAnonymousDuringPTZSession | boolean Make users anonymous during PTZ session |
name | string Name |
object |
{- "allowMobileClientLogOn": true,
- "allowSmartClientLogOn": true,
- "allowWebClientLogOn": true,
- "description": "Role may have a long description",
- "dualAuthorizationRequired": false,
- "makeUsersAnonymousDuringPTZSession": false,
- "name": "Default Role",
- "relations": {
- "self": {
- "type": "roles",
- "id": "4a6c31be-631c-48a7-b5bd-f8d65291c8d8"
}
}
}
{- "data": {
- "allowMobileClientLogOn": true,
- "allowSmartClientLogOn": true,
- "allowWebClientLogOn": true,
- "claims": [
- {
- "claimName": "vms_role",
- "claimProvider": "a873a5bb-ad32-47cb-bebc-6a95f9252e90",
- "claimValue": "admin",
- "displayName": "admin"
}
], - "description": "Role may have a long description",
- "displayName": "Default Role",
- "dualAuthorizationRequired": false,
- "id": "4a6c31be-631c-48a7-b5bd-f8d65291c8d8",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "makeUsersAnonymousDuringPTZSession": false,
- "name": "Default Role",
- "roleType": "UserDefined",
- "users": [
- {
- "accountName": "Bob",
- "description": "User may have a long description",
- "displayName": "Bob",
- "domain": "[BASIC]",
- "identityType": "BasicUser",
- "memberOf": "string",
- "memberOfRoles": "string",
- "members": "string",
- "sid": "083BDFD6-F583-4F6B-BDFE-5819D287C243",
- "relations": {
- "self": {
- "type": "users",
- "id": "71456a60-cf20-4764-a7a0-a1f89ca56546"
}, - "parent": {
- "type": "users",
- "id": "71456a60-cf20-4764-a7a0-a1f89ca56546"
}
}
}
], - "relations": {
- "self": {
- "type": "roles",
- "id": "4a6c31be-631c-48a7-b5bd-f8d65291c8d8"
}
}
}
}
Perform a task
id required | string <guid> Example: 4a6c31be-631c-48a7-b5bd-f8d65291c8d8 Id of the object |
task required | string Example: task=ChangeOverallSecurityPermissions task=SetClientTimeProfile, or task=GetClientTimeProfile, or task=SetClientProfile, or task=ChangeOverallSecurityPermissions SetClientTimeProfile - Set client login time profile GetClientTimeProfile - Get client login time profile SetClientProfile - Set client profile on role ChangeOverallSecurityPermissions - Edit overall security permissions |
itemSelection | string Client login time profile |
{- "itemSelection": "string"
}
{- "result": {
- "displayName": "Default Role",
- "itemSelection": "Always"
}
}
Get array of all claims
id required | string <guid> Example: 4a6c31be-631c-48a7-b5bd-f8d65291c8d8 Id of the role object |
{- "array": [
- {
- "claimName": "vms_role",
- "claimProvider": "a873a5bb-ad32-47cb-bebc-6a95f9252e90",
- "claimValue": "admin",
- "displayName": "admin"
}
]
}
Get array of all users
id required | string <guid> Example: 4a6c31be-631c-48a7-b5bd-f8d65291c8d8 Id of the object |
{- "array": [
- {
- "accountName": "Bob",
- "description": "User may have a long description",
- "displayName": "Bob",
- "domain": "[BASIC]",
- "identityType": "BasicUser",
- "memberOf": "string",
- "memberOfRoles": "string",
- "members": "string",
- "sid": "083BDFD6-F583-4F6B-BDFE-5819D287C243",
- "relations": {
- "self": {
- "type": "users",
- "id": "71456a60-cf20-4764-a7a0-a1f89ca56546"
}, - "parent": {
- "type": "users",
- "id": "71456a60-cf20-4764-a7a0-a1f89ca56546"
}
}
}
]
}
Perform a task
id required | string <guid> Example: 4a6c31be-631c-48a7-b5bd-f8d65291c8d8 Id of the object |
task required | string Example: task=RemoveRoleMember task=AddRoleMember, or task=RemoveRoleMember AddRoleMember - Add new user or group to role RemoveRoleMember - Remove role member |
sid | string SID |
{- "sid": "string"
}
{- "result": {
- "displayName": "Role members",
- "sid": "string"
}
}
Get specific users
idParent required | string <guid> Example: 4a6c31be-631c-48a7-b5bd-f8d65291c8d8 Id of the role object |
id required | string <guid> Example: 4a6c31be-631c-48a7-b5bd-f8d65291c8d8 Id of the user object |
{- "array": [
- {
- "accountName": "Bob",
- "description": "User may have a long description",
- "displayName": "Bob",
- "domain": "[BASIC]",
- "identityType": "BasicUser",
- "memberOf": "string",
- "memberOfRoles": "string",
- "members": "string",
- "sid": "083BDFD6-F583-4F6B-BDFE-5819D287C243",
- "relations": {
- "self": {
- "type": "users",
- "id": "71456a60-cf20-4764-a7a0-a1f89ca56546"
}, - "parent": {
- "type": "users",
- "id": "71456a60-cf20-4764-a7a0-a1f89ca56546"
}
}
}
]
}
Get list of all securityNamespaces
{- "data": {
- "name": "string",
- "displayName": "string",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "userDefined": "true",
- "structure": 1,
- "resourceTypes": "cameras",
- "securityActions": [
- {
- "name": "GENERIC_READ",
- "displayName": { },
- "securityMask": 0,
- "visible": true
}
], - "relations": {
- "self": {
- "type": "securityNamespaces",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08"
}
}
}
}
Create a new securityNamespace to be used by integrations
name | string Short name of the securityNamespaces |
displayName | string Long name of the securityNamespaces |
id | string <uuid> The id as defined by the caller |
Array of objects (securityAction) Defines all the available permissions in this namespace |
{- "name": "string",
- "displayName": "string",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "securityActions": [
- {
- "name": "GENERIC_READ",
- "displayName": { },
- "securityMask": 0,
- "visible": true
}
]
}
{- "result": {
- "name": "string",
- "displayName": "string",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "userDefined": "true",
- "structure": 1,
- "resourceTypes": "cameras",
- "securityActions": [
- {
- "name": "GENERIC_READ",
- "displayName": { },
- "securityMask": 0,
- "visible": true
}
], - "relations": {
- "self": {
- "type": "securityNamespaces",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08"
}
}
}
}
Retrieve definition of the securityNamespaces identified by the id
id required | string <uuid> |
{- "data": {
- "name": "string",
- "displayName": "string",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "userDefined": "true",
- "structure": 1,
- "resourceTypes": "cameras",
- "securityActions": [
- {
- "name": "GENERIC_READ",
- "displayName": { },
- "securityMask": 0,
- "visible": true
}
], - "relations": {
- "self": {
- "type": "securityNamespaces",
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08"
}
}
}
}
Retrieve the list of the object ids the caller has access to, and a bit mask for each object defining what detailed permissions the caller has
id required | string <uuid> Defines the securityNamespaces to retrieve effective permissions from |
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "isAdministrator": true,
- "objectPermissions": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "mask": 61
}
]
}
{- "array": [
- {
- "description": "ClientProfile may have a long description",
- "displayName": "My profile",
- "id": "210ff07d-91e6-48f4-8ade-ae79d29d749e",
- "isDefaultProfile": false,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "My profile",
- "clientProfileAccessControl": {
- "displayName": "Access Control",
- "showAccessRequestNotifications": "Yes",
- "showAccessRequestNotificationsLocked": false
}, - "clientProfileAdvanced": {
- "advancedAdaptiveStreaming": "Disabled",
- "advancedAdaptiveStreamingLocked": false,
- "advancedDeinterlacing": "Default",
- "advancedDeinterlacingLocked": false,
- "advancedMaxDecodingThreads": "Auto",
- "advancedMaxDecodingThreadsLocked": false,
- "advancedMulticast": "Enabled",
- "advancedMulticastLocked": false,
- "advancedTimeZone": "LocalMachine",
- "advancedTimeZoneCustom": "Dateline Standard Time",
- "advancedTimeZoneCustomLocked": false,
- "advancedTimeZoneLocked": false,
- "advancedVideoPlayerDiagnosticLevel": "Level0",
- "advancedVideoPlayerDiagnosticLevelLocked": false,
- "advancedVideoPlayerHardwareDecodingMode": "Auto",
- "advancedVideoPlayerHardwareDecodingModeLocked": false,
- "displayName": "Advanced"
}, - "clientProfileAlarmManager": {
- "alarmManagerPlaySoundNotifications": "No",
- "alarmManagerPlaySoundNotificationsLocked": false,
- "alarmManagerShowDesktopNotifications": "No",
- "alarmManagerShowDesktopNotificationsLocked": false,
- "displayName": "Alarm Manager"
}, - "clientProfileExport": {
- "displayName": "Export",
- "exportDestinationType": "Both",
- "exportDestinationTypeLocked": false,
- "exportMergeAddPadding": "No",
- "exportMergeAddPaddingLocked": false,
- "exportMergeFormat": "MP4",
- "exportMergeFormatLocked": false,
- "exportMergeFramesPerSecond": "Fps30",
- "exportMergeFramesPerSecondLocked": false,
- "exportMergeMediaPlayerFormat": "Unavailable",
- "exportMergeMediaPlayerFormatLocked": true,
- "exportMergePreventUpscaling": "No",
- "exportMergePreventUpscalingLocked": false,
- "exportMergeQuality": "Medium",
- "exportMergeQualityLocked": false,
- "exportMergeResolution": "FullHD",
- "exportMergeResolutionLocked": false,
- "exportMergeVideoClipType": "Both",
- "exportMergeVideoClipTypeLocked": false,
- "exportPrivacyMask": "Available",
- "exportPrivacyMaskLocked": false,
- "exportSmartClientPlayerEncryptDatabases": "Yes",
- "exportSmartClientPlayerEncryptDatabasesLocked": true,
- "exportSmartClientPlayerEncryptionStrength": "AES256",
- "exportSmartClientPlayerEncryptionStrengthLocked": true,
- "exportSmartClientPlayerEncryptPassword": "string",
- "exportSmartClientPlayerEncryptPasswordLocked": false,
- "exportSmartClientPlayerFormat": "Available",
- "exportSmartClientPlayerFormatLocked": false,
- "exportSmartClientPlayerGlobalCommentsContent": "string",
- "exportSmartClientPlayerGlobalCommentsContentLocked": false,
- "exportSmartClientPlayerGlobalCommentsMode": "Optional",
- "exportSmartClientPlayerGlobalCommentsModeLocked": false,
- "exportSmartClientPlayerIncludePlayer": "Yes",
- "exportSmartClientPlayerIncludePlayerLocked": false,
- "exportSmartClientPlayerIndividualCommentsMode": "Optional",
- "exportSmartClientPlayerIndividualCommentsModeLocked": false,
- "exportSmartClientPlayerLockForReExport": "Yes",
- "exportSmartClientPlayerLockForReExportLocked": true,
- "exportSmartClientPlayerSignData": "Yes",
- "exportSmartClientPlayerSignDataLocked": true,
- "exportStillImageFormat": "Unavailable",
- "exportStillImageFormatLocked": true,
- "exportStillImageTimestamp": "No",
- "exportStillImageTimestampLocked": false,
- "exportVideoClipCodecProperties": "Available",
- "exportVideoClipCodecPropertiesLocked": false,
- "exportVideoClipFormat": "Unavailable",
- "exportVideoClipFormatLocked": true,
- "exportVideoClipFrameRate": "No",
- "exportVideoClipFrameRateLocked": false,
- "exportVideoClipOutputType": "MKV",
- "exportVideoClipOutputTypeLocked": true,
- "exportVideoClipTextsContent": "string",
- "exportVideoClipTextsContentLocked": false,
- "exportVideoClipTextsMode": "Optional",
- "exportVideoClipTimestamp": "No",
- "exportVideoClipTimestampLocked": false,
- "exportVideoClipType": "Both",
- "exportVideoClipTypeLocked": false,
- "functionsPlaybackExportPath": "Default",
- "functionsPlaybackExportPathCustom": "C:\\Export",
- "functionsPlaybackExportPathCustomLocked": false,
- "panesPlaybackExport": "Available"
}, - "clientProfileGeneral": {
- "alarmManagerTab": "Available",
- "applicationAutoLogin": "Available",
- "applicationEvidenceLock": "Available",
- "applicationExitButton": "Available",
- "applicationHideMousePointerTimeout": "Seconds_5",
- "applicationHideMousePointerTimeoutLocked": false,
- "applicationInactivityTimeout": 0,
- "applicationJoystickSetup": "Available",
- "applicationKeyboardSetup": "Available",
- "applicationLiftPrivacyMaskTimeout": "Minutes_30",
- "applicationLogoutButton": "Available",
- "applicationMaximizeButton": "Available",
- "applicationMinimizeButton": "Available",
- "applicationNewSCVersionText": "string",
- "applicationNewSCVersionWindow": "Show",
- "applicationOnlineHelp": "Available",
- "applicationOnlineHelpLocked": false,
- "applicationOptionsDialogButton": "Available",
- "applicationRememberPassword": "Available",
- "applicationSnapshotAvailability": "Available",
- "applicationSnapshotAvailabilityLocked": false,
- "applicationSnapshotPath": "c:\\Snapshots",
- "applicationSnapshotPathLocked": false,
- "applicationStartMode": "Last",
- "applicationStartModeLocked": false,
- "applicationStartView": "Last",
- "applicationStartViewLocked": false,
- "applicationTransactTab": "Available",
- "applicationVideoTutorials": "Available",
- "applicationVideoTutorialsLocked": false,
- "centralizedSearchMaxDeviceCount": "Count_100",
- "centralizedSearchTab": "Available",
- "displayName": "General",
- "generalApplicationMaximization": "NormalWindow",
- "generalApplicationMaximizationLocked": false,
- "generalCameraErrors": "BlackImageWithOverlay",
- "generalCameraErrorsLocked": false,
- "generalCameraStoppedMessage": "BlackImageWithOverlay",
- "generalCameraStoppedMessageLocked": false,
- "generalDefaultPtzPointAndClickMode": "VirtualJoystick",
- "generalDefaultPtzPointAndClickModeLocked": false,
- "generalDefaultVideoBuffer": "Standard",
- "generalDefaultVideoBufferLocked": false,
- "generalEmptySpaces": "CompanyLogo",
- "generalEmptySpacesLocked": false,
- "generalHtmlViewItemScripting": "Disabled",
- "generalServerErrors": "Hidden",
- "generalServerErrorsLocked": false,
- "generalTimeInTitlebar": "Show",
- "generalTimeInTitlebarLocked": false,
- "generalTitleBar": "Show",
- "generalTitleBarLocked": false,
- "generalViewGridSpacer": "Pixel1",
- "generalViewGridSpacerLocked": false,
- "systemMonitorTab": "Available",
- "viewsCustomLogoInEmptySpaces": "string"
}, - "clientProfileGisMap": {
- "displayName": "Smart map",
- "gisMapBingMapKey": "string",
- "gisMapBingMapKeyLocked": true,
- "gisMapCacheCleanUp": "OnScClose_IfFileNotUsed",
- "gisMapCacheCleanUpLocked": false,
- "gisMapCreateLayerLocation": "No",
- "gisMapCreateLayerLocationLocked": false,
- "gisMapGoogleMapClientId": "string",
- "gisMapGoogleMapClientIdLocked": true,
- "gisMapGoogleMapPrivateKey": "string",
- "gisMapGoogleMapPrivateKeyLocked": true,
- "gisMapGoogleMapSigningSecret": "string",
- "gisMapGoogleMapSigningSecretLocked": true,
- "gisMapOpenStreetMapAlternativeServer": "string",
- "gisMapOpenStreetMapAlternativeServerLocked": true,
- "gisMapOpenStreetMapGeographicLayer": "Unavailable",
- "gisMapOpenStreetMapGeographicLayerLocked": true
}, - "clientProfileLive": {
- "displayName": "Live",
- "functionsLiveBookmarkMode": "Quick",
- "functionsLiveBookmarkModeLocked": false,
- "functionsLiveBoundingBoxes": "Available",
- "functionsLiveBoundingBoxesLocked": false,
- "functionsLiveCameraPlayback": "Available",
- "functionsLiveCameraPlaybackLocked": false,
- "functionsLiveOverlayButtons": "Available",
- "functionsLiveOverlayButtonsLocked": false,
- "functionsLivePrintAvailability": "Available",
- "functionsLivePrintAvailabilityLocked": false,
- "panesLiveAudio": "Available",
- "panesLiveAudioLocked": false,
- "panesLiveEvents": "Available",
- "panesLiveEventsLocked": false,
- "panesLiveMIPPlugin": "Available",
- "panesLiveMIPPluginLocked": false,
- "panesLiveOutputs": "Available",
- "panesLiveOutputsLocked": false,
- "panesLiveSystemOverview": "Available",
- "panesLiveSystemOverviewLocked": false,
- "panesLiveTab": "Available",
- "panesLiveViews": "Available",
- "panesLiveViewsLocked": false
}, - "clientProfilePlayback": {
- "displayName": "Playback",
- "functionsPlaybackBookmarkMode": "Detail",
- "functionsPlaybackBookmarkModeLocked": false,
- "functionsPlaybackBoundingBoxes": "Available",
- "functionsPlaybackBoundingBoxesLocked": false,
- "functionsPlaybackIndependentPlayback": "Available",
- "functionsPlaybackPrintReportCopyRights": "Show",
- "functionsPlaybackPrintReportHeadline": "Default",
- "functionsPlaybackPrintReportHeadlineLocked": false,
- "functionsPlaybackPrintReportHeadlineText": "string",
- "functionsPlaybackPrintReportUserInformation": "Show",
- "panesPlaybackAudio": "Available",
- "panesPlaybackAudioLocked": false,
- "panesPlaybackMIPPlugin": "Available",
- "panesPlaybackMIPPluginLocked": false,
- "panesPlaybackPrint": "Available",
- "panesPlaybackPrintLocked": false,
- "panesPlaybackSystemOverview": "Available",
- "panesPlaybackSystemOverviewLocked": false,
- "panesPlaybackTab": "Available",
- "panesPlaybackViews": "Available",
- "panesPlaybackViewsLocked": false
}, - "clientProfileSetup": {
- "displayName": "Setup",
- "functionsSetupEnableVideoBufferingOption": "Available",
- "functionsSetupEnableVideoBufferingOptionLocked": false,
- "functionsSetupOverlayButtons": "Available",
- "functionsSetupOverlayButtonsLocked": false,
- "mapEditGisMap": "Available",
- "mapEditMaps": "Available",
- "panesSetupMIPPlugin": "Available",
- "panesSetupMIPPluginLocked": false,
- "panesSetupOverlayButtons": "Available",
- "panesSetupOverlayButtonsLocked": false,
- "panesSetupProperties": "Available",
- "panesSetupPropertiesLocked": false,
- "panesSetupSystemOverview": "Available",
- "panesSetupSystemOverviewLocked": false,
- "panesSetupTab": "Available",
- "panesSetupViews": "Available",
- "panesSetupViewsLocked": false
}, - "clientProfileTimeline": {
- "displayName": "Timeline",
- "timelineAllCamerasTimeline": "Show",
- "timelineAllCamerasTimelineLocked": false,
- "timelineBookmarks": "Show",
- "timelineBookmarksLocked": false,
- "timelineHideForNormalViewsTimeout": "Disabled",
- "timelineHideForNormalViewsTimeoutLocked": false,
- "timelineHideForSmartWallViewsTimeout": "Seconds_5",
- "timelineHideForSmartWallViewsTimeoutLocked": false,
- "timelineIncomingAudio": "Hide",
- "timelineIncomingAudioLocked": false,
- "timelineMipData": "Hide",
- "timelineMipDataLocked": false,
- "timelineMipMarker": "Hide",
- "timelineMipMarkerLocked": false,
- "timelineMotion": "Show",
- "timelineMotionLocked": false,
- "timelineOutgoingAudio": "Hide",
- "timelineOutgoingAudioLocked": false,
- "timelineSkipGaps": "DoSkipGaps",
- "timelineSkipGapsLocked": false
}, - "clientProfileViewLayouts": {
- "disabledViewLayouts": [
- {
- "type": "layouts",
- "id": "4514ed40-a3ee-4b47-94ca-3bb7e9f14249"
}
], - "displayName": "View layouts"
}, - "relations": {
- "self": {
- "type": "clientProfiles",
- "id": "210ff07d-91e6-48f4-8ade-ae79d29d749e"
}
}
}
]
}
Client profile
description | string Description |
name | string Name |
object (clientProfileAccessControl) | |
object (clientProfileAdvanced) | |
object (clientProfileAlarmManager) | |
object (clientProfileExport) | |
object (clientProfileGeneral) | |
object (clientProfileGisMap) | |
object (clientProfileLive) | |
object (clientProfilePlayback) | |
object (clientProfileSetup) | |
object (clientProfileTimeline) | |
object (clientProfileViewLayouts) | |
object |
{- "description": "ClientProfile may have a long description",
- "name": "My profile",
- "clientProfileAccessControl": {
- "showAccessRequestNotifications": "Yes",
- "showAccessRequestNotificationsLocked": false
}, - "clientProfileAdvanced": {
- "advancedAdaptiveStreaming": "Disabled",
- "advancedAdaptiveStreamingLocked": false,
- "advancedDeinterlacing": "Default",
- "advancedDeinterlacingLocked": false,
- "advancedMaxDecodingThreads": "Auto",
- "advancedMaxDecodingThreadsLocked": false,
- "advancedMulticast": "Enabled",
- "advancedMulticastLocked": false,
- "advancedTimeZone": "LocalMachine",
- "advancedTimeZoneCustom": "Dateline Standard Time",
- "advancedTimeZoneCustomLocked": false,
- "advancedTimeZoneLocked": false,
- "advancedVideoPlayerDiagnosticLevel": "Level0",
- "advancedVideoPlayerDiagnosticLevelLocked": false,
- "advancedVideoPlayerHardwareDecodingMode": "Auto",
- "advancedVideoPlayerHardwareDecodingModeLocked": false
}, - "clientProfileAlarmManager": {
- "alarmManagerPlaySoundNotifications": "No",
- "alarmManagerPlaySoundNotificationsLocked": false,
- "alarmManagerShowDesktopNotifications": "No",
- "alarmManagerShowDesktopNotificationsLocked": false
}, - "clientProfileExport": {
- "exportDestinationType": "Both",
- "exportDestinationTypeLocked": false,
- "exportMergeAddPadding": "No",
- "exportMergeAddPaddingLocked": false,
- "exportMergeFormat": "MP4",
- "exportMergeFormatLocked": false,
- "exportMergeFramesPerSecond": "Fps30",
- "exportMergeFramesPerSecondLocked": false,
- "exportMergeMediaPlayerFormat": "Unavailable",
- "exportMergeMediaPlayerFormatLocked": true,
- "exportMergePreventUpscaling": "No",
- "exportMergePreventUpscalingLocked": false,
- "exportMergeQuality": "Medium",
- "exportMergeQualityLocked": false,
- "exportMergeResolution": "FullHD",
- "exportMergeResolutionLocked": false,
- "exportMergeVideoClipType": "Both",
- "exportMergeVideoClipTypeLocked": false,
- "exportPrivacyMask": "Available",
- "exportPrivacyMaskLocked": false,
- "exportSmartClientPlayerEncryptDatabases": "Yes",
- "exportSmartClientPlayerEncryptDatabasesLocked": true,
- "exportSmartClientPlayerEncryptionStrength": "AES256",
- "exportSmartClientPlayerEncryptionStrengthLocked": true,
- "exportSmartClientPlayerEncryptPassword": "string",
- "exportSmartClientPlayerEncryptPasswordLocked": false,
- "exportSmartClientPlayerFormat": "Available",
- "exportSmartClientPlayerFormatLocked": false,
- "exportSmartClientPlayerGlobalCommentsContent": "string",
- "exportSmartClientPlayerGlobalCommentsContentLocked": false,
- "exportSmartClientPlayerGlobalCommentsMode": "Optional",
- "exportSmartClientPlayerGlobalCommentsModeLocked": false,
- "exportSmartClientPlayerIncludePlayer": "Yes",
- "exportSmartClientPlayerIncludePlayerLocked": false,
- "exportSmartClientPlayerIndividualCommentsMode": "Optional",
- "exportSmartClientPlayerIndividualCommentsModeLocked": false,
- "exportSmartClientPlayerLockForReExport": "Yes",
- "exportSmartClientPlayerLockForReExportLocked": true,
- "exportSmartClientPlayerSignData": "Yes",
- "exportSmartClientPlayerSignDataLocked": true,
- "exportStillImageFormat": "Unavailable",
- "exportStillImageFormatLocked": true,
- "exportStillImageTimestamp": "No",
- "exportStillImageTimestampLocked": false,
- "exportVideoClipCodecProperties": "Available",
- "exportVideoClipCodecPropertiesLocked": false,
- "exportVideoClipFormat": "Unavailable",
- "exportVideoClipFormatLocked": true,
- "exportVideoClipFrameRate": "No",
- "exportVideoClipFrameRateLocked": false,
- "exportVideoClipOutputType": "MKV",
- "exportVideoClipOutputTypeLocked": true,
- "exportVideoClipTextsContent": "string",
- "exportVideoClipTextsContentLocked": false,
- "exportVideoClipTextsMode": "Optional",
- "exportVideoClipTimestamp": "No",
- "exportVideoClipTimestampLocked": false,
- "exportVideoClipType": "Both",
- "exportVideoClipTypeLocked": false,
- "functionsPlaybackExportPath": "Default",
- "functionsPlaybackExportPathCustom": "C:\\Export",
- "functionsPlaybackExportPathCustomLocked": false,
- "panesPlaybackExport": "Available"
}, - "clientProfileGeneral": {
- "alarmManagerTab": "Available",
- "applicationAutoLogin": "Available",
- "applicationEvidenceLock": "Available",
- "applicationExitButton": "Available",
- "applicationHideMousePointerTimeout": "Seconds_5",
- "applicationHideMousePointerTimeoutLocked": false,
- "applicationInactivityTimeout": 0,
- "applicationJoystickSetup": "Available",
- "applicationKeyboardSetup": "Available",
- "applicationLiftPrivacyMaskTimeout": "Minutes_30",
- "applicationLogoutButton": "Available",
- "applicationMaximizeButton": "Available",
- "applicationMinimizeButton": "Available",
- "applicationNewSCVersionText": "string",
- "applicationNewSCVersionWindow": "Show",
- "applicationOnlineHelp": "Available",
- "applicationOnlineHelpLocked": false,
- "applicationOptionsDialogButton": "Available",
- "applicationRememberPassword": "Available",
- "applicationSnapshotAvailability": "Available",
- "applicationSnapshotAvailabilityLocked": false,
- "applicationSnapshotPath": "c:\\Snapshots",
- "applicationSnapshotPathLocked": false,
- "applicationStartMode": "Last",
- "applicationStartModeLocked": false,
- "applicationStartView": "Last",
- "applicationStartViewLocked": false,
- "applicationTransactTab": "Available",
- "applicationVideoTutorials": "Available",
- "applicationVideoTutorialsLocked": false,
- "centralizedSearchMaxDeviceCount": "Count_100",
- "centralizedSearchTab": "Available",
- "generalApplicationMaximization": "NormalWindow",
- "generalApplicationMaximizationLocked": false,
- "generalCameraErrors": "BlackImageWithOverlay",
- "generalCameraErrorsLocked": false,
- "generalCameraStoppedMessage": "BlackImageWithOverlay",
- "generalCameraStoppedMessageLocked": false,
- "generalDefaultPtzPointAndClickMode": "VirtualJoystick",
- "generalDefaultPtzPointAndClickModeLocked": false,
- "generalDefaultVideoBuffer": "Standard",
- "generalDefaultVideoBufferLocked": false,
- "generalEmptySpaces": "CompanyLogo",
- "generalEmptySpacesLocked": false,
- "generalHtmlViewItemScripting": "Disabled",
- "generalServerErrors": "Hidden",
- "generalServerErrorsLocked": false,
- "generalTimeInTitlebar": "Show",
- "generalTimeInTitlebarLocked": false,
- "generalTitleBar": "Show",
- "generalTitleBarLocked": false,
- "generalViewGridSpacer": "Pixel1",
- "generalViewGridSpacerLocked": false,
- "systemMonitorTab": "Available",
- "viewsCustomLogoInEmptySpaces": "string"
}, - "clientProfileGisMap": {
- "gisMapBingMapKey": "string",
- "gisMapBingMapKeyLocked": true,
- "gisMapCacheCleanUp": "OnScClose_IfFileNotUsed",
- "gisMapCacheCleanUpLocked": false,
- "gisMapCreateLayerLocation": "No",
- "gisMapCreateLayerLocationLocked": false,
- "gisMapGoogleMapClientId": "string",
- "gisMapGoogleMapClientIdLocked": true,
- "gisMapGoogleMapPrivateKey": "string",
- "gisMapGoogleMapPrivateKeyLocked": true,
- "gisMapGoogleMapSigningSecret": "string",
- "gisMapGoogleMapSigningSecretLocked": true,
- "gisMapOpenStreetMapAlternativeServer": "string",
- "gisMapOpenStreetMapAlternativeServerLocked": true,
- "gisMapOpenStreetMapGeographicLayer": "Unavailable",
- "gisMapOpenStreetMapGeographicLayerLocked": true
}, - "clientProfileLive": {
- "functionsLiveBookmarkMode": "Quick",
- "functionsLiveBookmarkModeLocked": false,
- "functionsLiveBoundingBoxes": "Available",
- "functionsLiveBoundingBoxesLocked": false,
- "functionsLiveCameraPlayback": "Available",
- "functionsLiveCameraPlaybackLocked": false,
- "functionsLiveOverlayButtons": "Available",
- "functionsLiveOverlayButtonsLocked": false,
- "functionsLivePrintAvailability": "Available",
- "functionsLivePrintAvailabilityLocked": false,
- "panesLiveAudio": "Available",
- "panesLiveAudioLocked": false,
- "panesLiveEvents": "Available",
- "panesLiveEventsLocked": false,
- "panesLiveMIPPlugin": "Available",
- "panesLiveMIPPluginLocked": false,
- "panesLiveOutputs": "Available",
- "panesLiveOutputsLocked": false,
- "panesLiveSystemOverview": "Available",
- "panesLiveSystemOverviewLocked": false,
- "panesLiveTab": "Available",
- "panesLiveViews": "Available",
- "panesLiveViewsLocked": false
}, - "clientProfilePlayback": {
- "functionsPlaybackBookmarkMode": "Detail",
- "functionsPlaybackBookmarkModeLocked": false,
- "functionsPlaybackBoundingBoxes": "Available",
- "functionsPlaybackBoundingBoxesLocked": false,
- "functionsPlaybackIndependentPlayback": "Available",
- "functionsPlaybackPrintReportCopyRights": "Show",
- "functionsPlaybackPrintReportHeadline": "Default",
- "functionsPlaybackPrintReportHeadlineLocked": false,
- "functionsPlaybackPrintReportHeadlineText": "string",
- "functionsPlaybackPrintReportUserInformation": "Show",
- "panesPlaybackAudio": "Available",
- "panesPlaybackAudioLocked": false,
- "panesPlaybackMIPPlugin": "Available",
- "panesPlaybackMIPPluginLocked": false,
- "panesPlaybackPrint": "Available",
- "panesPlaybackPrintLocked": false,
- "panesPlaybackSystemOverview": "Available",
- "panesPlaybackSystemOverviewLocked": false,
- "panesPlaybackTab": "Available",
- "panesPlaybackViews": "Available",
- "panesPlaybackViewsLocked": false
}, - "clientProfileSetup": {
- "functionsSetupEnableVideoBufferingOption": "Available",
- "functionsSetupEnableVideoBufferingOptionLocked": false,
- "functionsSetupOverlayButtons": "Available",
- "functionsSetupOverlayButtonsLocked": false,
- "mapEditGisMap": "Available",
- "mapEditMaps": "Available",
- "panesSetupMIPPlugin": "Available",
- "panesSetupMIPPluginLocked": false,
- "panesSetupOverlayButtons": "Available",
- "panesSetupOverlayButtonsLocked": false,
- "panesSetupProperties": "Available",
- "panesSetupPropertiesLocked": false,
- "panesSetupSystemOverview": "Available",
- "panesSetupSystemOverviewLocked": false,
- "panesSetupTab": "Available",
- "panesSetupViews": "Available",
- "panesSetupViewsLocked": false
}, - "clientProfileTimeline": {
- "timelineAllCamerasTimeline": "Show",
- "timelineAllCamerasTimelineLocked": false,
- "timelineBookmarks": "Show",
- "timelineBookmarksLocked": false,
- "timelineHideForNormalViewsTimeout": "Disabled",
- "timelineHideForNormalViewsTimeoutLocked": false,
- "timelineHideForSmartWallViewsTimeout": "Seconds_5",
- "timelineHideForSmartWallViewsTimeoutLocked": false,
- "timelineIncomingAudio": "Hide",
- "timelineIncomingAudioLocked": false,
- "timelineMipData": "Hide",
- "timelineMipDataLocked": false,
- "timelineMipMarker": "Hide",
- "timelineMipMarkerLocked": false,
- "timelineMotion": "Show",
- "timelineMotionLocked": false,
- "timelineOutgoingAudio": "Hide",
- "timelineOutgoingAudioLocked": false,
- "timelineSkipGaps": "DoSkipGaps",
- "timelineSkipGapsLocked": false
}, - "clientProfileViewLayouts": {
- "disabledViewLayouts": [
- {
- "type": "layouts",
- "id": "4514ed40-a3ee-4b47-94ca-3bb7e9f14249"
}
]
}, - "relations": {
- "self": {
- "type": "clientProfiles",
- "id": "210ff07d-91e6-48f4-8ade-ae79d29d749e"
}
}
}
{- "result": {
- "description": "ClientProfile may have a long description",
- "displayName": "My profile",
- "id": "210ff07d-91e6-48f4-8ade-ae79d29d749e",
- "isDefaultProfile": false,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "My profile",
- "clientProfileAccessControl": {
- "displayName": "Access Control",
- "showAccessRequestNotifications": "Yes",
- "showAccessRequestNotificationsLocked": false
}, - "clientProfileAdvanced": {
- "advancedAdaptiveStreaming": "Disabled",
- "advancedAdaptiveStreamingLocked": false,
- "advancedDeinterlacing": "Default",
- "advancedDeinterlacingLocked": false,
- "advancedMaxDecodingThreads": "Auto",
- "advancedMaxDecodingThreadsLocked": false,
- "advancedMulticast": "Enabled",
- "advancedMulticastLocked": false,
- "advancedTimeZone": "LocalMachine",
- "advancedTimeZoneCustom": "Dateline Standard Time",
- "advancedTimeZoneCustomLocked": false,
- "advancedTimeZoneLocked": false,
- "advancedVideoPlayerDiagnosticLevel": "Level0",
- "advancedVideoPlayerDiagnosticLevelLocked": false,
- "advancedVideoPlayerHardwareDecodingMode": "Auto",
- "advancedVideoPlayerHardwareDecodingModeLocked": false,
- "displayName": "Advanced"
}, - "clientProfileAlarmManager": {
- "alarmManagerPlaySoundNotifications": "No",
- "alarmManagerPlaySoundNotificationsLocked": false,
- "alarmManagerShowDesktopNotifications": "No",
- "alarmManagerShowDesktopNotificationsLocked": false,
- "displayName": "Alarm Manager"
}, - "clientProfileExport": {
- "displayName": "Export",
- "exportDestinationType": "Both",
- "exportDestinationTypeLocked": false,
- "exportMergeAddPadding": "No",
- "exportMergeAddPaddingLocked": false,
- "exportMergeFormat": "MP4",
- "exportMergeFormatLocked": false,
- "exportMergeFramesPerSecond": "Fps30",
- "exportMergeFramesPerSecondLocked": false,
- "exportMergeMediaPlayerFormat": "Unavailable",
- "exportMergeMediaPlayerFormatLocked": true,
- "exportMergePreventUpscaling": "No",
- "exportMergePreventUpscalingLocked": false,
- "exportMergeQuality": "Medium",
- "exportMergeQualityLocked": false,
- "exportMergeResolution": "FullHD",
- "exportMergeResolutionLocked": false,
- "exportMergeVideoClipType": "Both",
- "exportMergeVideoClipTypeLocked": false,
- "exportPrivacyMask": "Available",
- "exportPrivacyMaskLocked": false,
- "exportSmartClientPlayerEncryptDatabases": "Yes",
- "exportSmartClientPlayerEncryptDatabasesLocked": true,
- "exportSmartClientPlayerEncryptionStrength": "AES256",
- "exportSmartClientPlayerEncryptionStrengthLocked": true,
- "exportSmartClientPlayerEncryptPassword": "string",
- "exportSmartClientPlayerEncryptPasswordLocked": false,
- "exportSmartClientPlayerFormat": "Available",
- "exportSmartClientPlayerFormatLocked": false,
- "exportSmartClientPlayerGlobalCommentsContent": "string",
- "exportSmartClientPlayerGlobalCommentsContentLocked": false,
- "exportSmartClientPlayerGlobalCommentsMode": "Optional",
- "exportSmartClientPlayerGlobalCommentsModeLocked": false,
- "exportSmartClientPlayerIncludePlayer": "Yes",
- "exportSmartClientPlayerIncludePlayerLocked": false,
- "exportSmartClientPlayerIndividualCommentsMode": "Optional",
- "exportSmartClientPlayerIndividualCommentsModeLocked": false,
- "exportSmartClientPlayerLockForReExport": "Yes",
- "exportSmartClientPlayerLockForReExportLocked": true,
- "exportSmartClientPlayerSignData": "Yes",
- "exportSmartClientPlayerSignDataLocked": true,
- "exportStillImageFormat": "Unavailable",
- "exportStillImageFormatLocked": true,
- "exportStillImageTimestamp": "No",
- "exportStillImageTimestampLocked": false,
- "exportVideoClipCodecProperties": "Available",
- "exportVideoClipCodecPropertiesLocked": false,
- "exportVideoClipFormat": "Unavailable",
- "exportVideoClipFormatLocked": true,
- "exportVideoClipFrameRate": "No",
- "exportVideoClipFrameRateLocked": false,
- "exportVideoClipOutputType": "MKV",
- "exportVideoClipOutputTypeLocked": true,
- "exportVideoClipTextsContent": "string",
- "exportVideoClipTextsContentLocked": false,
- "exportVideoClipTextsMode": "Optional",
- "exportVideoClipTimestamp": "No",
- "exportVideoClipTimestampLocked": false,
- "exportVideoClipType": "Both",
- "exportVideoClipTypeLocked": false,
- "functionsPlaybackExportPath": "Default",
- "functionsPlaybackExportPathCustom": "C:\\Export",
- "functionsPlaybackExportPathCustomLocked": false,
- "panesPlaybackExport": "Available"
}, - "clientProfileGeneral": {
- "alarmManagerTab": "Available",
- "applicationAutoLogin": "Available",
- "applicationEvidenceLock": "Available",
- "applicationExitButton": "Available",
- "applicationHideMousePointerTimeout": "Seconds_5",
- "applicationHideMousePointerTimeoutLocked": false,
- "applicationInactivityTimeout": 0,
- "applicationJoystickSetup": "Available",
- "applicationKeyboardSetup": "Available",
- "applicationLiftPrivacyMaskTimeout": "Minutes_30",
- "applicationLogoutButton": "Available",
- "applicationMaximizeButton": "Available",
- "applicationMinimizeButton": "Available",
- "applicationNewSCVersionText": "string",
- "applicationNewSCVersionWindow": "Show",
- "applicationOnlineHelp": "Available",
- "applicationOnlineHelpLocked": false,
- "applicationOptionsDialogButton": "Available",
- "applicationRememberPassword": "Available",
- "applicationSnapshotAvailability": "Available",
- "applicationSnapshotAvailabilityLocked": false,
- "applicationSnapshotPath": "c:\\Snapshots",
- "applicationSnapshotPathLocked": false,
- "applicationStartMode": "Last",
- "applicationStartModeLocked": false,
- "applicationStartView": "Last",
- "applicationStartViewLocked": false,
- "applicationTransactTab": "Available",
- "applicationVideoTutorials": "Available",
- "applicationVideoTutorialsLocked": false,
- "centralizedSearchMaxDeviceCount": "Count_100",
- "centralizedSearchTab": "Available",
- "displayName": "General",
- "generalApplicationMaximization": "NormalWindow",
- "generalApplicationMaximizationLocked": false,
- "generalCameraErrors": "BlackImageWithOverlay",
- "generalCameraErrorsLocked": false,
- "generalCameraStoppedMessage": "BlackImageWithOverlay",
- "generalCameraStoppedMessageLocked": false,
- "generalDefaultPtzPointAndClickMode": "VirtualJoystick",
- "generalDefaultPtzPointAndClickModeLocked": false,
- "generalDefaultVideoBuffer": "Standard",
- "generalDefaultVideoBufferLocked": false,
- "generalEmptySpaces": "CompanyLogo",
- "generalEmptySpacesLocked": false,
- "generalHtmlViewItemScripting": "Disabled",
- "generalServerErrors": "Hidden",
- "generalServerErrorsLocked": false,
- "generalTimeInTitlebar": "Show",
- "generalTimeInTitlebarLocked": false,
- "generalTitleBar": "Show",
- "generalTitleBarLocked": false,
- "generalViewGridSpacer": "Pixel1",
- "generalViewGridSpacerLocked": false,
- "systemMonitorTab": "Available",
- "viewsCustomLogoInEmptySpaces": "string"
}, - "clientProfileGisMap": {
- "displayName": "Smart map",
- "gisMapBingMapKey": "string",
- "gisMapBingMapKeyLocked": true,
- "gisMapCacheCleanUp": "OnScClose_IfFileNotUsed",
- "gisMapCacheCleanUpLocked": false,
- "gisMapCreateLayerLocation": "No",
- "gisMapCreateLayerLocationLocked": false,
- "gisMapGoogleMapClientId": "string",
- "gisMapGoogleMapClientIdLocked": true,
- "gisMapGoogleMapPrivateKey": "string",
- "gisMapGoogleMapPrivateKeyLocked": true,
- "gisMapGoogleMapSigningSecret": "string",
- "gisMapGoogleMapSigningSecretLocked": true,
- "gisMapOpenStreetMapAlternativeServer": "string",
- "gisMapOpenStreetMapAlternativeServerLocked": true,
- "gisMapOpenStreetMapGeographicLayer": "Unavailable",
- "gisMapOpenStreetMapGeographicLayerLocked": true
}, - "clientProfileLive": {
- "displayName": "Live",
- "functionsLiveBookmarkMode": "Quick",
- "functionsLiveBookmarkModeLocked": false,
- "functionsLiveBoundingBoxes": "Available",
- "functionsLiveBoundingBoxesLocked": false,
- "functionsLiveCameraPlayback": "Available",
- "functionsLiveCameraPlaybackLocked": false,
- "functionsLiveOverlayButtons": "Available",
- "functionsLiveOverlayButtonsLocked": false,
- "functionsLivePrintAvailability": "Available",
- "functionsLivePrintAvailabilityLocked": false,
- "panesLiveAudio": "Available",
- "panesLiveAudioLocked": false,
- "panesLiveEvents": "Available",
- "panesLiveEventsLocked": false,
- "panesLiveMIPPlugin": "Available",
- "panesLiveMIPPluginLocked": false,
- "panesLiveOutputs": "Available",
- "panesLiveOutputsLocked": false,
- "panesLiveSystemOverview": "Available",
- "panesLiveSystemOverviewLocked": false,
- "panesLiveTab": "Available",
- "panesLiveViews": "Available",
- "panesLiveViewsLocked": false
}, - "clientProfilePlayback": {
- "displayName": "Playback",
- "functionsPlaybackBookmarkMode": "Detail",
- "functionsPlaybackBookmarkModeLocked": false,
- "functionsPlaybackBoundingBoxes": "Available",
- "functionsPlaybackBoundingBoxesLocked": false,
- "functionsPlaybackIndependentPlayback": "Available",
- "functionsPlaybackPrintReportCopyRights": "Show",
- "functionsPlaybackPrintReportHeadline": "Default",
- "functionsPlaybackPrintReportHeadlineLocked": false,
- "functionsPlaybackPrintReportHeadlineText": "string",
- "functionsPlaybackPrintReportUserInformation": "Show",
- "panesPlaybackAudio": "Available",
- "panesPlaybackAudioLocked": false,
- "panesPlaybackMIPPlugin": "Available",
- "panesPlaybackMIPPluginLocked": false,
- "panesPlaybackPrint": "Available",
- "panesPlaybackPrintLocked": false,
- "panesPlaybackSystemOverview": "Available",
- "panesPlaybackSystemOverviewLocked": false,
- "panesPlaybackTab": "Available",
- "panesPlaybackViews": "Available",
- "panesPlaybackViewsLocked": false
}, - "clientProfileSetup": {
- "displayName": "Setup",
- "functionsSetupEnableVideoBufferingOption": "Available",
- "functionsSetupEnableVideoBufferingOptionLocked": false,
- "functionsSetupOverlayButtons": "Available",
- "functionsSetupOverlayButtonsLocked": false,
- "mapEditGisMap": "Available",
- "mapEditMaps": "Available",
- "panesSetupMIPPlugin": "Available",
- "panesSetupMIPPluginLocked": false,
- "panesSetupOverlayButtons": "Available",
- "panesSetupOverlayButtonsLocked": false,
- "panesSetupProperties": "Available",
- "panesSetupPropertiesLocked": false,
- "panesSetupSystemOverview": "Available",
- "panesSetupSystemOverviewLocked": false,
- "panesSetupTab": "Available",
- "panesSetupViews": "Available",
- "panesSetupViewsLocked": false
}, - "clientProfileTimeline": {
- "displayName": "Timeline",
- "timelineAllCamerasTimeline": "Show",
- "timelineAllCamerasTimelineLocked": false,
- "timelineBookmarks": "Show",
- "timelineBookmarksLocked": false,
- "timelineHideForNormalViewsTimeout": "Disabled",
- "timelineHideForNormalViewsTimeoutLocked": false,
- "timelineHideForSmartWallViewsTimeout": "Seconds_5",
- "timelineHideForSmartWallViewsTimeoutLocked": false,
- "timelineIncomingAudio": "Hide",
- "timelineIncomingAudioLocked": false,
- "timelineMipData": "Hide",
- "timelineMipDataLocked": false,
- "timelineMipMarker": "Hide",
- "timelineMipMarkerLocked": false,
- "timelineMotion": "Show",
- "timelineMotionLocked": false,
- "timelineOutgoingAudio": "Hide",
- "timelineOutgoingAudioLocked": false,
- "timelineSkipGaps": "DoSkipGaps",
- "timelineSkipGapsLocked": false
}, - "clientProfileViewLayouts": {
- "disabledViewLayouts": [
- {
- "type": "layouts",
- "id": "4514ed40-a3ee-4b47-94ca-3bb7e9f14249"
}
], - "displayName": "View layouts"
}, - "relations": {
- "self": {
- "type": "clientProfiles",
- "id": "210ff07d-91e6-48f4-8ade-ae79d29d749e"
}
}
}
}
Client profile
id required | string <guid> Example: 210ff07d-91e6-48f4-8ade-ae79d29d749e Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "description": "ClientProfile may have a long description",
- "displayName": "My profile",
- "id": "210ff07d-91e6-48f4-8ade-ae79d29d749e",
- "isDefaultProfile": false,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "My profile",
- "clientProfileAccessControl": {
- "displayName": "Access Control",
- "showAccessRequestNotifications": "Yes",
- "showAccessRequestNotificationsLocked": false
}, - "clientProfileAdvanced": {
- "advancedAdaptiveStreaming": "Disabled",
- "advancedAdaptiveStreamingLocked": false,
- "advancedDeinterlacing": "Default",
- "advancedDeinterlacingLocked": false,
- "advancedMaxDecodingThreads": "Auto",
- "advancedMaxDecodingThreadsLocked": false,
- "advancedMulticast": "Enabled",
- "advancedMulticastLocked": false,
- "advancedTimeZone": "LocalMachine",
- "advancedTimeZoneCustom": "Dateline Standard Time",
- "advancedTimeZoneCustomLocked": false,
- "advancedTimeZoneLocked": false,
- "advancedVideoPlayerDiagnosticLevel": "Level0",
- "advancedVideoPlayerDiagnosticLevelLocked": false,
- "advancedVideoPlayerHardwareDecodingMode": "Auto",
- "advancedVideoPlayerHardwareDecodingModeLocked": false,
- "displayName": "Advanced"
}, - "clientProfileAlarmManager": {
- "alarmManagerPlaySoundNotifications": "No",
- "alarmManagerPlaySoundNotificationsLocked": false,
- "alarmManagerShowDesktopNotifications": "No",
- "alarmManagerShowDesktopNotificationsLocked": false,
- "displayName": "Alarm Manager"
}, - "clientProfileExport": {
- "displayName": "Export",
- "exportDestinationType": "Both",
- "exportDestinationTypeLocked": false,
- "exportMergeAddPadding": "No",
- "exportMergeAddPaddingLocked": false,
- "exportMergeFormat": "MP4",
- "exportMergeFormatLocked": false,
- "exportMergeFramesPerSecond": "Fps30",
- "exportMergeFramesPerSecondLocked": false,
- "exportMergeMediaPlayerFormat": "Unavailable",
- "exportMergeMediaPlayerFormatLocked": true,
- "exportMergePreventUpscaling": "No",
- "exportMergePreventUpscalingLocked": false,
- "exportMergeQuality": "Medium",
- "exportMergeQualityLocked": false,
- "exportMergeResolution": "FullHD",
- "exportMergeResolutionLocked": false,
- "exportMergeVideoClipType": "Both",
- "exportMergeVideoClipTypeLocked": false,
- "exportPrivacyMask": "Available",
- "exportPrivacyMaskLocked": false,
- "exportSmartClientPlayerEncryptDatabases": "Yes",
- "exportSmartClientPlayerEncryptDatabasesLocked": true,
- "exportSmartClientPlayerEncryptionStrength": "AES256",
- "exportSmartClientPlayerEncryptionStrengthLocked": true,
- "exportSmartClientPlayerEncryptPassword": "string",
- "exportSmartClientPlayerEncryptPasswordLocked": false,
- "exportSmartClientPlayerFormat": "Available",
- "exportSmartClientPlayerFormatLocked": false,
- "exportSmartClientPlayerGlobalCommentsContent": "string",
- "exportSmartClientPlayerGlobalCommentsContentLocked": false,
- "exportSmartClientPlayerGlobalCommentsMode": "Optional",
- "exportSmartClientPlayerGlobalCommentsModeLocked": false,
- "exportSmartClientPlayerIncludePlayer": "Yes",
- "exportSmartClientPlayerIncludePlayerLocked": false,
- "exportSmartClientPlayerIndividualCommentsMode": "Optional",
- "exportSmartClientPlayerIndividualCommentsModeLocked": false,
- "exportSmartClientPlayerLockForReExport": "Yes",
- "exportSmartClientPlayerLockForReExportLocked": true,
- "exportSmartClientPlayerSignData": "Yes",
- "exportSmartClientPlayerSignDataLocked": true,
- "exportStillImageFormat": "Unavailable",
- "exportStillImageFormatLocked": true,
- "exportStillImageTimestamp": "No",
- "exportStillImageTimestampLocked": false,
- "exportVideoClipCodecProperties": "Available",
- "exportVideoClipCodecPropertiesLocked": false,
- "exportVideoClipFormat": "Unavailable",
- "exportVideoClipFormatLocked": true,
- "exportVideoClipFrameRate": "No",
- "exportVideoClipFrameRateLocked": false,
- "exportVideoClipOutputType": "MKV",
- "exportVideoClipOutputTypeLocked": true,
- "exportVideoClipTextsContent": "string",
- "exportVideoClipTextsContentLocked": false,
- "exportVideoClipTextsMode": "Optional",
- "exportVideoClipTimestamp": "No",
- "exportVideoClipTimestampLocked": false,
- "exportVideoClipType": "Both",
- "exportVideoClipTypeLocked": false,
- "functionsPlaybackExportPath": "Default",
- "functionsPlaybackExportPathCustom": "C:\\Export",
- "functionsPlaybackExportPathCustomLocked": false,
- "panesPlaybackExport": "Available"
}, - "clientProfileGeneral": {
- "alarmManagerTab": "Available",
- "applicationAutoLogin": "Available",
- "applicationEvidenceLock": "Available",
- "applicationExitButton": "Available",
- "applicationHideMousePointerTimeout": "Seconds_5",
- "applicationHideMousePointerTimeoutLocked": false,
- "applicationInactivityTimeout": 0,
- "applicationJoystickSetup": "Available",
- "applicationKeyboardSetup": "Available",
- "applicationLiftPrivacyMaskTimeout": "Minutes_30",
- "applicationLogoutButton": "Available",
- "applicationMaximizeButton": "Available",
- "applicationMinimizeButton": "Available",
- "applicationNewSCVersionText": "string",
- "applicationNewSCVersionWindow": "Show",
- "applicationOnlineHelp": "Available",
- "applicationOnlineHelpLocked": false,
- "applicationOptionsDialogButton": "Available",
- "applicationRememberPassword": "Available",
- "applicationSnapshotAvailability": "Available",
- "applicationSnapshotAvailabilityLocked": false,
- "applicationSnapshotPath": "c:\\Snapshots",
- "applicationSnapshotPathLocked": false,
- "applicationStartMode": "Last",
- "applicationStartModeLocked": false,
- "applicationStartView": "Last",
- "applicationStartViewLocked": false,
- "applicationTransactTab": "Available",
- "applicationVideoTutorials": "Available",
- "applicationVideoTutorialsLocked": false,
- "centralizedSearchMaxDeviceCount": "Count_100",
- "centralizedSearchTab": "Available",
- "displayName": "General",
- "generalApplicationMaximization": "NormalWindow",
- "generalApplicationMaximizationLocked": false,
- "generalCameraErrors": "BlackImageWithOverlay",
- "generalCameraErrorsLocked": false,
- "generalCameraStoppedMessage": "BlackImageWithOverlay",
- "generalCameraStoppedMessageLocked": false,
- "generalDefaultPtzPointAndClickMode": "VirtualJoystick",
- "generalDefaultPtzPointAndClickModeLocked": false,
- "generalDefaultVideoBuffer": "Standard",
- "generalDefaultVideoBufferLocked": false,
- "generalEmptySpaces": "CompanyLogo",
- "generalEmptySpacesLocked": false,
- "generalHtmlViewItemScripting": "Disabled",
- "generalServerErrors": "Hidden",
- "generalServerErrorsLocked": false,
- "generalTimeInTitlebar": "Show",
- "generalTimeInTitlebarLocked": false,
- "generalTitleBar": "Show",
- "generalTitleBarLocked": false,
- "generalViewGridSpacer": "Pixel1",
- "generalViewGridSpacerLocked": false,
- "systemMonitorTab": "Available",
- "viewsCustomLogoInEmptySpaces": "string"
}, - "clientProfileGisMap": {
- "displayName": "Smart map",
- "gisMapBingMapKey": "string",
- "gisMapBingMapKeyLocked": true,
- "gisMapCacheCleanUp": "OnScClose_IfFileNotUsed",
- "gisMapCacheCleanUpLocked": false,
- "gisMapCreateLayerLocation": "No",
- "gisMapCreateLayerLocationLocked": false,
- "gisMapGoogleMapClientId": "string",
- "gisMapGoogleMapClientIdLocked": true,
- "gisMapGoogleMapPrivateKey": "string",
- "gisMapGoogleMapPrivateKeyLocked": true,
- "gisMapGoogleMapSigningSecret": "string",
- "gisMapGoogleMapSigningSecretLocked": true,
- "gisMapOpenStreetMapAlternativeServer": "string",
- "gisMapOpenStreetMapAlternativeServerLocked": true,
- "gisMapOpenStreetMapGeographicLayer": "Unavailable",
- "gisMapOpenStreetMapGeographicLayerLocked": true
}, - "clientProfileLive": {
- "displayName": "Live",
- "functionsLiveBookmarkMode": "Quick",
- "functionsLiveBookmarkModeLocked": false,
- "functionsLiveBoundingBoxes": "Available",
- "functionsLiveBoundingBoxesLocked": false,
- "functionsLiveCameraPlayback": "Available",
- "functionsLiveCameraPlaybackLocked": false,
- "functionsLiveOverlayButtons": "Available",
- "functionsLiveOverlayButtonsLocked": false,
- "functionsLivePrintAvailability": "Available",
- "functionsLivePrintAvailabilityLocked": false,
- "panesLiveAudio": "Available",
- "panesLiveAudioLocked": false,
- "panesLiveEvents": "Available",
- "panesLiveEventsLocked": false,
- "panesLiveMIPPlugin": "Available",
- "panesLiveMIPPluginLocked": false,
- "panesLiveOutputs": "Available",
- "panesLiveOutputsLocked": false,
- "panesLiveSystemOverview": "Available",
- "panesLiveSystemOverviewLocked": false,
- "panesLiveTab": "Available",
- "panesLiveViews": "Available",
- "panesLiveViewsLocked": false
}, - "clientProfilePlayback": {
- "displayName": "Playback",
- "functionsPlaybackBookmarkMode": "Detail",
- "functionsPlaybackBookmarkModeLocked": false,
- "functionsPlaybackBoundingBoxes": "Available",
- "functionsPlaybackBoundingBoxesLocked": false,
- "functionsPlaybackIndependentPlayback": "Available",
- "functionsPlaybackPrintReportCopyRights": "Show",
- "functionsPlaybackPrintReportHeadline": "Default",
- "functionsPlaybackPrintReportHeadlineLocked": false,
- "functionsPlaybackPrintReportHeadlineText": "string",
- "functionsPlaybackPrintReportUserInformation": "Show",
- "panesPlaybackAudio": "Available",
- "panesPlaybackAudioLocked": false,
- "panesPlaybackMIPPlugin": "Available",
- "panesPlaybackMIPPluginLocked": false,
- "panesPlaybackPrint": "Available",
- "panesPlaybackPrintLocked": false,
- "panesPlaybackSystemOverview": "Available",
- "panesPlaybackSystemOverviewLocked": false,
- "panesPlaybackTab": "Available",
- "panesPlaybackViews": "Available",
- "panesPlaybackViewsLocked": false
}, - "clientProfileSetup": {
- "displayName": "Setup",
- "functionsSetupEnableVideoBufferingOption": "Available",
- "functionsSetupEnableVideoBufferingOptionLocked": false,
- "functionsSetupOverlayButtons": "Available",
- "functionsSetupOverlayButtonsLocked": false,
- "mapEditGisMap": "Available",
- "mapEditMaps": "Available",
- "panesSetupMIPPlugin": "Available",
- "panesSetupMIPPluginLocked": false,
- "panesSetupOverlayButtons": "Available",
- "panesSetupOverlayButtonsLocked": false,
- "panesSetupProperties": "Available",
- "panesSetupPropertiesLocked": false,
- "panesSetupSystemOverview": "Available",
- "panesSetupSystemOverviewLocked": false,
- "panesSetupTab": "Available",
- "panesSetupViews": "Available",
- "panesSetupViewsLocked": false
}, - "clientProfileTimeline": {
- "displayName": "Timeline",
- "timelineAllCamerasTimeline": "Show",
- "timelineAllCamerasTimelineLocked": false,
- "timelineBookmarks": "Show",
- "timelineBookmarksLocked": false,
- "timelineHideForNormalViewsTimeout": "Disabled",
- "timelineHideForNormalViewsTimeoutLocked": false,
- "timelineHideForSmartWallViewsTimeout": "Seconds_5",
- "timelineHideForSmartWallViewsTimeoutLocked": false,
- "timelineIncomingAudio": "Hide",
- "timelineIncomingAudioLocked": false,
- "timelineMipData": "Hide",
- "timelineMipDataLocked": false,
- "timelineMipMarker": "Hide",
- "timelineMipMarkerLocked": false,
- "timelineMotion": "Show",
- "timelineMotionLocked": false,
- "timelineOutgoingAudio": "Hide",
- "timelineOutgoingAudioLocked": false,
- "timelineSkipGaps": "DoSkipGaps",
- "timelineSkipGapsLocked": false
}, - "clientProfileViewLayouts": {
- "disabledViewLayouts": [
- {
- "type": "layouts",
- "id": "4514ed40-a3ee-4b47-94ca-3bb7e9f14249"
}
], - "displayName": "View layouts"
}, - "relations": {
- "self": {
- "type": "clientProfiles",
- "id": "210ff07d-91e6-48f4-8ade-ae79d29d749e"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Client profile
id required | string <guid> Example: 210ff07d-91e6-48f4-8ade-ae79d29d749e Id of the object |
description | string Description |
name | string Name |
object (clientProfileAccessControl) | |
object (clientProfileAdvanced) | |
object (clientProfileAlarmManager) | |
object (clientProfileExport) | |
object (clientProfileGeneral) | |
object (clientProfileGisMap) | |
object (clientProfileLive) | |
object (clientProfilePlayback) | |
object (clientProfileSetup) | |
object (clientProfileTimeline) | |
object (clientProfileViewLayouts) | |
object |
{- "description": "ClientProfile may have a long description",
- "name": "My profile",
- "clientProfileAccessControl": {
- "showAccessRequestNotifications": "Yes",
- "showAccessRequestNotificationsLocked": false
}, - "clientProfileAdvanced": {
- "advancedAdaptiveStreaming": "Disabled",
- "advancedAdaptiveStreamingLocked": false,
- "advancedDeinterlacing": "Default",
- "advancedDeinterlacingLocked": false,
- "advancedMaxDecodingThreads": "Auto",
- "advancedMaxDecodingThreadsLocked": false,
- "advancedMulticast": "Enabled",
- "advancedMulticastLocked": false,
- "advancedTimeZone": "LocalMachine",
- "advancedTimeZoneCustom": "Dateline Standard Time",
- "advancedTimeZoneCustomLocked": false,
- "advancedTimeZoneLocked": false,
- "advancedVideoPlayerDiagnosticLevel": "Level0",
- "advancedVideoPlayerDiagnosticLevelLocked": false,
- "advancedVideoPlayerHardwareDecodingMode": "Auto",
- "advancedVideoPlayerHardwareDecodingModeLocked": false
}, - "clientProfileAlarmManager": {
- "alarmManagerPlaySoundNotifications": "No",
- "alarmManagerPlaySoundNotificationsLocked": false,
- "alarmManagerShowDesktopNotifications": "No",
- "alarmManagerShowDesktopNotificationsLocked": false
}, - "clientProfileExport": {
- "exportDestinationType": "Both",
- "exportDestinationTypeLocked": false,
- "exportMergeAddPadding": "No",
- "exportMergeAddPaddingLocked": false,
- "exportMergeFormat": "MP4",
- "exportMergeFormatLocked": false,
- "exportMergeFramesPerSecond": "Fps30",
- "exportMergeFramesPerSecondLocked": false,
- "exportMergeMediaPlayerFormat": "Unavailable",
- "exportMergeMediaPlayerFormatLocked": true,
- "exportMergePreventUpscaling": "No",
- "exportMergePreventUpscalingLocked": false,
- "exportMergeQuality": "Medium",
- "exportMergeQualityLocked": false,
- "exportMergeResolution": "FullHD",
- "exportMergeResolutionLocked": false,
- "exportMergeVideoClipType": "Both",
- "exportMergeVideoClipTypeLocked": false,
- "exportPrivacyMask": "Available",
- "exportPrivacyMaskLocked": false,
- "exportSmartClientPlayerEncryptDatabases": "Yes",
- "exportSmartClientPlayerEncryptDatabasesLocked": true,
- "exportSmartClientPlayerEncryptionStrength": "AES256",
- "exportSmartClientPlayerEncryptionStrengthLocked": true,
- "exportSmartClientPlayerEncryptPassword": "string",
- "exportSmartClientPlayerEncryptPasswordLocked": false,
- "exportSmartClientPlayerFormat": "Available",
- "exportSmartClientPlayerFormatLocked": false,
- "exportSmartClientPlayerGlobalCommentsContent": "string",
- "exportSmartClientPlayerGlobalCommentsContentLocked": false,
- "exportSmartClientPlayerGlobalCommentsMode": "Optional",
- "exportSmartClientPlayerGlobalCommentsModeLocked": false,
- "exportSmartClientPlayerIncludePlayer": "Yes",
- "exportSmartClientPlayerIncludePlayerLocked": false,
- "exportSmartClientPlayerIndividualCommentsMode": "Optional",
- "exportSmartClientPlayerIndividualCommentsModeLocked": false,
- "exportSmartClientPlayerLockForReExport": "Yes",
- "exportSmartClientPlayerLockForReExportLocked": true,
- "exportSmartClientPlayerSignData": "Yes",
- "exportSmartClientPlayerSignDataLocked": true,
- "exportStillImageFormat": "Unavailable",
- "exportStillImageFormatLocked": true,
- "exportStillImageTimestamp": "No",
- "exportStillImageTimestampLocked": false,
- "exportVideoClipCodecProperties": "Available",
- "exportVideoClipCodecPropertiesLocked": false,
- "exportVideoClipFormat": "Unavailable",
- "exportVideoClipFormatLocked": true,
- "exportVideoClipFrameRate": "No",
- "exportVideoClipFrameRateLocked": false,
- "exportVideoClipOutputType": "MKV",
- "exportVideoClipOutputTypeLocked": true,
- "exportVideoClipTextsContent": "string",
- "exportVideoClipTextsContentLocked": false,
- "exportVideoClipTextsMode": "Optional",
- "exportVideoClipTimestamp": "No",
- "exportVideoClipTimestampLocked": false,
- "exportVideoClipType": "Both",
- "exportVideoClipTypeLocked": false,
- "functionsPlaybackExportPath": "Default",
- "functionsPlaybackExportPathCustom": "C:\\Export",
- "functionsPlaybackExportPathCustomLocked": false,
- "panesPlaybackExport": "Available"
}, - "clientProfileGeneral": {
- "alarmManagerTab": "Available",
- "applicationAutoLogin": "Available",
- "applicationEvidenceLock": "Available",
- "applicationExitButton": "Available",
- "applicationHideMousePointerTimeout": "Seconds_5",
- "applicationHideMousePointerTimeoutLocked": false,
- "applicationInactivityTimeout": 0,
- "applicationJoystickSetup": "Available",
- "applicationKeyboardSetup": "Available",
- "applicationLiftPrivacyMaskTimeout": "Minutes_30",
- "applicationLogoutButton": "Available",
- "applicationMaximizeButton": "Available",
- "applicationMinimizeButton": "Available",
- "applicationNewSCVersionText": "string",
- "applicationNewSCVersionWindow": "Show",
- "applicationOnlineHelp": "Available",
- "applicationOnlineHelpLocked": false,
- "applicationOptionsDialogButton": "Available",
- "applicationRememberPassword": "Available",
- "applicationSnapshotAvailability": "Available",
- "applicationSnapshotAvailabilityLocked": false,
- "applicationSnapshotPath": "c:\\Snapshots",
- "applicationSnapshotPathLocked": false,
- "applicationStartMode": "Last",
- "applicationStartModeLocked": false,
- "applicationStartView": "Last",
- "applicationStartViewLocked": false,
- "applicationTransactTab": "Available",
- "applicationVideoTutorials": "Available",
- "applicationVideoTutorialsLocked": false,
- "centralizedSearchMaxDeviceCount": "Count_100",
- "centralizedSearchTab": "Available",
- "generalApplicationMaximization": "NormalWindow",
- "generalApplicationMaximizationLocked": false,
- "generalCameraErrors": "BlackImageWithOverlay",
- "generalCameraErrorsLocked": false,
- "generalCameraStoppedMessage": "BlackImageWithOverlay",
- "generalCameraStoppedMessageLocked": false,
- "generalDefaultPtzPointAndClickMode": "VirtualJoystick",
- "generalDefaultPtzPointAndClickModeLocked": false,
- "generalDefaultVideoBuffer": "Standard",
- "generalDefaultVideoBufferLocked": false,
- "generalEmptySpaces": "CompanyLogo",
- "generalEmptySpacesLocked": false,
- "generalHtmlViewItemScripting": "Disabled",
- "generalServerErrors": "Hidden",
- "generalServerErrorsLocked": false,
- "generalTimeInTitlebar": "Show",
- "generalTimeInTitlebarLocked": false,
- "generalTitleBar": "Show",
- "generalTitleBarLocked": false,
- "generalViewGridSpacer": "Pixel1",
- "generalViewGridSpacerLocked": false,
- "systemMonitorTab": "Available",
- "viewsCustomLogoInEmptySpaces": "string"
}, - "clientProfileGisMap": {
- "gisMapBingMapKey": "string",
- "gisMapBingMapKeyLocked": true,
- "gisMapCacheCleanUp": "OnScClose_IfFileNotUsed",
- "gisMapCacheCleanUpLocked": false,
- "gisMapCreateLayerLocation": "No",
- "gisMapCreateLayerLocationLocked": false,
- "gisMapGoogleMapClientId": "string",
- "gisMapGoogleMapClientIdLocked": true,
- "gisMapGoogleMapPrivateKey": "string",
- "gisMapGoogleMapPrivateKeyLocked": true,
- "gisMapGoogleMapSigningSecret": "string",
- "gisMapGoogleMapSigningSecretLocked": true,
- "gisMapOpenStreetMapAlternativeServer": "string",
- "gisMapOpenStreetMapAlternativeServerLocked": true,
- "gisMapOpenStreetMapGeographicLayer": "Unavailable",
- "gisMapOpenStreetMapGeographicLayerLocked": true
}, - "clientProfileLive": {
- "functionsLiveBookmarkMode": "Quick",
- "functionsLiveBookmarkModeLocked": false,
- "functionsLiveBoundingBoxes": "Available",
- "functionsLiveBoundingBoxesLocked": false,
- "functionsLiveCameraPlayback": "Available",
- "functionsLiveCameraPlaybackLocked": false,
- "functionsLiveOverlayButtons": "Available",
- "functionsLiveOverlayButtonsLocked": false,
- "functionsLivePrintAvailability": "Available",
- "functionsLivePrintAvailabilityLocked": false,
- "panesLiveAudio": "Available",
- "panesLiveAudioLocked": false,
- "panesLiveEvents": "Available",
- "panesLiveEventsLocked": false,
- "panesLiveMIPPlugin": "Available",
- "panesLiveMIPPluginLocked": false,
- "panesLiveOutputs": "Available",
- "panesLiveOutputsLocked": false,
- "panesLiveSystemOverview": "Available",
- "panesLiveSystemOverviewLocked": false,
- "panesLiveTab": "Available",
- "panesLiveViews": "Available",
- "panesLiveViewsLocked": false
}, - "clientProfilePlayback": {
- "functionsPlaybackBookmarkMode": "Detail",
- "functionsPlaybackBookmarkModeLocked": false,
- "functionsPlaybackBoundingBoxes": "Available",
- "functionsPlaybackBoundingBoxesLocked": false,
- "functionsPlaybackIndependentPlayback": "Available",
- "functionsPlaybackPrintReportCopyRights": "Show",
- "functionsPlaybackPrintReportHeadline": "Default",
- "functionsPlaybackPrintReportHeadlineLocked": false,
- "functionsPlaybackPrintReportHeadlineText": "string",
- "functionsPlaybackPrintReportUserInformation": "Show",
- "panesPlaybackAudio": "Available",
- "panesPlaybackAudioLocked": false,
- "panesPlaybackMIPPlugin": "Available",
- "panesPlaybackMIPPluginLocked": false,
- "panesPlaybackPrint": "Available",
- "panesPlaybackPrintLocked": false,
- "panesPlaybackSystemOverview": "Available",
- "panesPlaybackSystemOverviewLocked": false,
- "panesPlaybackTab": "Available",
- "panesPlaybackViews": "Available",
- "panesPlaybackViewsLocked": false
}, - "clientProfileSetup": {
- "functionsSetupEnableVideoBufferingOption": "Available",
- "functionsSetupEnableVideoBufferingOptionLocked": false,
- "functionsSetupOverlayButtons": "Available",
- "functionsSetupOverlayButtonsLocked": false,
- "mapEditGisMap": "Available",
- "mapEditMaps": "Available",
- "panesSetupMIPPlugin": "Available",
- "panesSetupMIPPluginLocked": false,
- "panesSetupOverlayButtons": "Available",
- "panesSetupOverlayButtonsLocked": false,
- "panesSetupProperties": "Available",
- "panesSetupPropertiesLocked": false,
- "panesSetupSystemOverview": "Available",
- "panesSetupSystemOverviewLocked": false,
- "panesSetupTab": "Available",
- "panesSetupViews": "Available",
- "panesSetupViewsLocked": false
}, - "clientProfileTimeline": {
- "timelineAllCamerasTimeline": "Show",
- "timelineAllCamerasTimelineLocked": false,
- "timelineBookmarks": "Show",
- "timelineBookmarksLocked": false,
- "timelineHideForNormalViewsTimeout": "Disabled",
- "timelineHideForNormalViewsTimeoutLocked": false,
- "timelineHideForSmartWallViewsTimeout": "Seconds_5",
- "timelineHideForSmartWallViewsTimeoutLocked": false,
- "timelineIncomingAudio": "Hide",
- "timelineIncomingAudioLocked": false,
- "timelineMipData": "Hide",
- "timelineMipDataLocked": false,
- "timelineMipMarker": "Hide",
- "timelineMipMarkerLocked": false,
- "timelineMotion": "Show",
- "timelineMotionLocked": false,
- "timelineOutgoingAudio": "Hide",
- "timelineOutgoingAudioLocked": false,
- "timelineSkipGaps": "DoSkipGaps",
- "timelineSkipGapsLocked": false
}, - "clientProfileViewLayouts": {
- "disabledViewLayouts": [
- {
- "type": "layouts",
- "id": "4514ed40-a3ee-4b47-94ca-3bb7e9f14249"
}
]
}, - "relations": {
- "self": {
- "type": "clientProfiles",
- "id": "210ff07d-91e6-48f4-8ade-ae79d29d749e"
}
}
}
{- "data": {
- "description": "ClientProfile may have a long description",
- "displayName": "My profile",
- "id": "210ff07d-91e6-48f4-8ade-ae79d29d749e",
- "isDefaultProfile": false,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "My profile",
- "clientProfileAccessControl": {
- "displayName": "Access Control",
- "showAccessRequestNotifications": "Yes",
- "showAccessRequestNotificationsLocked": false
}, - "clientProfileAdvanced": {
- "advancedAdaptiveStreaming": "Disabled",
- "advancedAdaptiveStreamingLocked": false,
- "advancedDeinterlacing": "Default",
- "advancedDeinterlacingLocked": false,
- "advancedMaxDecodingThreads": "Auto",
- "advancedMaxDecodingThreadsLocked": false,
- "advancedMulticast": "Enabled",
- "advancedMulticastLocked": false,
- "advancedTimeZone": "LocalMachine",
- "advancedTimeZoneCustom": "Dateline Standard Time",
- "advancedTimeZoneCustomLocked": false,
- "advancedTimeZoneLocked": false,
- "advancedVideoPlayerDiagnosticLevel": "Level0",
- "advancedVideoPlayerDiagnosticLevelLocked": false,
- "advancedVideoPlayerHardwareDecodingMode": "Auto",
- "advancedVideoPlayerHardwareDecodingModeLocked": false,
- "displayName": "Advanced"
}, - "clientProfileAlarmManager": {
- "alarmManagerPlaySoundNotifications": "No",
- "alarmManagerPlaySoundNotificationsLocked": false,
- "alarmManagerShowDesktopNotifications": "No",
- "alarmManagerShowDesktopNotificationsLocked": false,
- "displayName": "Alarm Manager"
}, - "clientProfileExport": {
- "displayName": "Export",
- "exportDestinationType": "Both",
- "exportDestinationTypeLocked": false,
- "exportMergeAddPadding": "No",
- "exportMergeAddPaddingLocked": false,
- "exportMergeFormat": "MP4",
- "exportMergeFormatLocked": false,
- "exportMergeFramesPerSecond": "Fps30",
- "exportMergeFramesPerSecondLocked": false,
- "exportMergeMediaPlayerFormat": "Unavailable",
- "exportMergeMediaPlayerFormatLocked": true,
- "exportMergePreventUpscaling": "No",
- "exportMergePreventUpscalingLocked": false,
- "exportMergeQuality": "Medium",
- "exportMergeQualityLocked": false,
- "exportMergeResolution": "FullHD",
- "exportMergeResolutionLocked": false,
- "exportMergeVideoClipType": "Both",
- "exportMergeVideoClipTypeLocked": false,
- "exportPrivacyMask": "Available",
- "exportPrivacyMaskLocked": false,
- "exportSmartClientPlayerEncryptDatabases": "Yes",
- "exportSmartClientPlayerEncryptDatabasesLocked": true,
- "exportSmartClientPlayerEncryptionStrength": "AES256",
- "exportSmartClientPlayerEncryptionStrengthLocked": true,
- "exportSmartClientPlayerEncryptPassword": "string",
- "exportSmartClientPlayerEncryptPasswordLocked": false,
- "exportSmartClientPlayerFormat": "Available",
- "exportSmartClientPlayerFormatLocked": false,
- "exportSmartClientPlayerGlobalCommentsContent": "string",
- "exportSmartClientPlayerGlobalCommentsContentLocked": false,
- "exportSmartClientPlayerGlobalCommentsMode": "Optional",
- "exportSmartClientPlayerGlobalCommentsModeLocked": false,
- "exportSmartClientPlayerIncludePlayer": "Yes",
- "exportSmartClientPlayerIncludePlayerLocked": false,
- "exportSmartClientPlayerIndividualCommentsMode": "Optional",
- "exportSmartClientPlayerIndividualCommentsModeLocked": false,
- "exportSmartClientPlayerLockForReExport": "Yes",
- "exportSmartClientPlayerLockForReExportLocked": true,
- "exportSmartClientPlayerSignData": "Yes",
- "exportSmartClientPlayerSignDataLocked": true,
- "exportStillImageFormat": "Unavailable",
- "exportStillImageFormatLocked": true,
- "exportStillImageTimestamp": "No",
- "exportStillImageTimestampLocked": false,
- "exportVideoClipCodecProperties": "Available",
- "exportVideoClipCodecPropertiesLocked": false,
- "exportVideoClipFormat": "Unavailable",
- "exportVideoClipFormatLocked": true,
- "exportVideoClipFrameRate": "No",
- "exportVideoClipFrameRateLocked": false,
- "exportVideoClipOutputType": "MKV",
- "exportVideoClipOutputTypeLocked": true,
- "exportVideoClipTextsContent": "string",
- "exportVideoClipTextsContentLocked": false,
- "exportVideoClipTextsMode": "Optional",
- "exportVideoClipTimestamp": "No",
- "exportVideoClipTimestampLocked": false,
- "exportVideoClipType": "Both",
- "exportVideoClipTypeLocked": false,
- "functionsPlaybackExportPath": "Default",
- "functionsPlaybackExportPathCustom": "C:\\Export",
- "functionsPlaybackExportPathCustomLocked": false,
- "panesPlaybackExport": "Available"
}, - "clientProfileGeneral": {
- "alarmManagerTab": "Available",
- "applicationAutoLogin": "Available",
- "applicationEvidenceLock": "Available",
- "applicationExitButton": "Available",
- "applicationHideMousePointerTimeout": "Seconds_5",
- "applicationHideMousePointerTimeoutLocked": false,
- "applicationInactivityTimeout": 0,
- "applicationJoystickSetup": "Available",
- "applicationKeyboardSetup": "Available",
- "applicationLiftPrivacyMaskTimeout": "Minutes_30",
- "applicationLogoutButton": "Available",
- "applicationMaximizeButton": "Available",
- "applicationMinimizeButton": "Available",
- "applicationNewSCVersionText": "string",
- "applicationNewSCVersionWindow": "Show",
- "applicationOnlineHelp": "Available",
- "applicationOnlineHelpLocked": false,
- "applicationOptionsDialogButton": "Available",
- "applicationRememberPassword": "Available",
- "applicationSnapshotAvailability": "Available",
- "applicationSnapshotAvailabilityLocked": false,
- "applicationSnapshotPath": "c:\\Snapshots",
- "applicationSnapshotPathLocked": false,
- "applicationStartMode": "Last",
- "applicationStartModeLocked": false,
- "applicationStartView": "Last",
- "applicationStartViewLocked": false,
- "applicationTransactTab": "Available",
- "applicationVideoTutorials": "Available",
- "applicationVideoTutorialsLocked": false,
- "centralizedSearchMaxDeviceCount": "Count_100",
- "centralizedSearchTab": "Available",
- "displayName": "General",
- "generalApplicationMaximization": "NormalWindow",
- "generalApplicationMaximizationLocked": false,
- "generalCameraErrors": "BlackImageWithOverlay",
- "generalCameraErrorsLocked": false,
- "generalCameraStoppedMessage": "BlackImageWithOverlay",
- "generalCameraStoppedMessageLocked": false,
- "generalDefaultPtzPointAndClickMode": "VirtualJoystick",
- "generalDefaultPtzPointAndClickModeLocked": false,
- "generalDefaultVideoBuffer": "Standard",
- "generalDefaultVideoBufferLocked": false,
- "generalEmptySpaces": "CompanyLogo",
- "generalEmptySpacesLocked": false,
- "generalHtmlViewItemScripting": "Disabled",
- "generalServerErrors": "Hidden",
- "generalServerErrorsLocked": false,
- "generalTimeInTitlebar": "Show",
- "generalTimeInTitlebarLocked": false,
- "generalTitleBar": "Show",
- "generalTitleBarLocked": false,
- "generalViewGridSpacer": "Pixel1",
- "generalViewGridSpacerLocked": false,
- "systemMonitorTab": "Available",
- "viewsCustomLogoInEmptySpaces": "string"
}, - "clientProfileGisMap": {
- "displayName": "Smart map",
- "gisMapBingMapKey": "string",
- "gisMapBingMapKeyLocked": true,
- "gisMapCacheCleanUp": "OnScClose_IfFileNotUsed",
- "gisMapCacheCleanUpLocked": false,
- "gisMapCreateLayerLocation": "No",
- "gisMapCreateLayerLocationLocked": false,
- "gisMapGoogleMapClientId": "string",
- "gisMapGoogleMapClientIdLocked": true,
- "gisMapGoogleMapPrivateKey": "string",
- "gisMapGoogleMapPrivateKeyLocked": true,
- "gisMapGoogleMapSigningSecret": "string",
- "gisMapGoogleMapSigningSecretLocked": true,
- "gisMapOpenStreetMapAlternativeServer": "string",
- "gisMapOpenStreetMapAlternativeServerLocked": true,
- "gisMapOpenStreetMapGeographicLayer": "Unavailable",
- "gisMapOpenStreetMapGeographicLayerLocked": true
}, - "clientProfileLive": {
- "displayName": "Live",
- "functionsLiveBookmarkMode": "Quick",
- "functionsLiveBookmarkModeLocked": false,
- "functionsLiveBoundingBoxes": "Available",
- "functionsLiveBoundingBoxesLocked": false,
- "functionsLiveCameraPlayback": "Available",
- "functionsLiveCameraPlaybackLocked": false,
- "functionsLiveOverlayButtons": "Available",
- "functionsLiveOverlayButtonsLocked": false,
- "functionsLivePrintAvailability": "Available",
- "functionsLivePrintAvailabilityLocked": false,
- "panesLiveAudio": "Available",
- "panesLiveAudioLocked": false,
- "panesLiveEvents": "Available",
- "panesLiveEventsLocked": false,
- "panesLiveMIPPlugin": "Available",
- "panesLiveMIPPluginLocked": false,
- "panesLiveOutputs": "Available",
- "panesLiveOutputsLocked": false,
- "panesLiveSystemOverview": "Available",
- "panesLiveSystemOverviewLocked": false,
- "panesLiveTab": "Available",
- "panesLiveViews": "Available",
- "panesLiveViewsLocked": false
}, - "clientProfilePlayback": {
- "displayName": "Playback",
- "functionsPlaybackBookmarkMode": "Detail",
- "functionsPlaybackBookmarkModeLocked": false,
- "functionsPlaybackBoundingBoxes": "Available",
- "functionsPlaybackBoundingBoxesLocked": false,
- "functionsPlaybackIndependentPlayback": "Available",
- "functionsPlaybackPrintReportCopyRights": "Show",
- "functionsPlaybackPrintReportHeadline": "Default",
- "functionsPlaybackPrintReportHeadlineLocked": false,
- "functionsPlaybackPrintReportHeadlineText": "string",
- "functionsPlaybackPrintReportUserInformation": "Show",
- "panesPlaybackAudio": "Available",
- "panesPlaybackAudioLocked": false,
- "panesPlaybackMIPPlugin": "Available",
- "panesPlaybackMIPPluginLocked": false,
- "panesPlaybackPrint": "Available",
- "panesPlaybackPrintLocked": false,
- "panesPlaybackSystemOverview": "Available",
- "panesPlaybackSystemOverviewLocked": false,
- "panesPlaybackTab": "Available",
- "panesPlaybackViews": "Available",
- "panesPlaybackViewsLocked": false
}, - "clientProfileSetup": {
- "displayName": "Setup",
- "functionsSetupEnableVideoBufferingOption": "Available",
- "functionsSetupEnableVideoBufferingOptionLocked": false,
- "functionsSetupOverlayButtons": "Available",
- "functionsSetupOverlayButtonsLocked": false,
- "mapEditGisMap": "Available",
- "mapEditMaps": "Available",
- "panesSetupMIPPlugin": "Available",
- "panesSetupMIPPluginLocked": false,
- "panesSetupOverlayButtons": "Available",
- "panesSetupOverlayButtonsLocked": false,
- "panesSetupProperties": "Available",
- "panesSetupPropertiesLocked": false,
- "panesSetupSystemOverview": "Available",
- "panesSetupSystemOverviewLocked": false,
- "panesSetupTab": "Available",
- "panesSetupViews": "Available",
- "panesSetupViewsLocked": false
}, - "clientProfileTimeline": {
- "displayName": "Timeline",
- "timelineAllCamerasTimeline": "Show",
- "timelineAllCamerasTimelineLocked": false,
- "timelineBookmarks": "Show",
- "timelineBookmarksLocked": false,
- "timelineHideForNormalViewsTimeout": "Disabled",
- "timelineHideForNormalViewsTimeoutLocked": false,
- "timelineHideForSmartWallViewsTimeout": "Seconds_5",
- "timelineHideForSmartWallViewsTimeoutLocked": false,
- "timelineIncomingAudio": "Hide",
- "timelineIncomingAudioLocked": false,
- "timelineMipData": "Hide",
- "timelineMipDataLocked": false,
- "timelineMipMarker": "Hide",
- "timelineMipMarkerLocked": false,
- "timelineMotion": "Show",
- "timelineMotionLocked": false,
- "timelineOutgoingAudio": "Hide",
- "timelineOutgoingAudioLocked": false,
- "timelineSkipGaps": "DoSkipGaps",
- "timelineSkipGapsLocked": false
}, - "clientProfileViewLayouts": {
- "disabledViewLayouts": [
- {
- "type": "layouts",
- "id": "4514ed40-a3ee-4b47-94ca-3bb7e9f14249"
}
], - "displayName": "View layouts"
}, - "relations": {
- "self": {
- "type": "clientProfiles",
- "id": "210ff07d-91e6-48f4-8ade-ae79d29d749e"
}
}
}
}
Client profile
id required | string <guid> Example: 210ff07d-91e6-48f4-8ade-ae79d29d749e Id of the object |
description | string Description |
name | string Name |
object (clientProfileAccessControl) | |
object (clientProfileAdvanced) | |
object (clientProfileAlarmManager) | |
object (clientProfileExport) | |
object (clientProfileGeneral) | |
object (clientProfileGisMap) | |
object (clientProfileLive) | |
object (clientProfilePlayback) | |
object (clientProfileSetup) | |
object (clientProfileTimeline) | |
object (clientProfileViewLayouts) | |
object |
{- "description": "ClientProfile may have a long description",
- "name": "My profile",
- "clientProfileAccessControl": {
- "showAccessRequestNotifications": "Yes",
- "showAccessRequestNotificationsLocked": false
}, - "clientProfileAdvanced": {
- "advancedAdaptiveStreaming": "Disabled",
- "advancedAdaptiveStreamingLocked": false,
- "advancedDeinterlacing": "Default",
- "advancedDeinterlacingLocked": false,
- "advancedMaxDecodingThreads": "Auto",
- "advancedMaxDecodingThreadsLocked": false,
- "advancedMulticast": "Enabled",
- "advancedMulticastLocked": false,
- "advancedTimeZone": "LocalMachine",
- "advancedTimeZoneCustom": "Dateline Standard Time",
- "advancedTimeZoneCustomLocked": false,
- "advancedTimeZoneLocked": false,
- "advancedVideoPlayerDiagnosticLevel": "Level0",
- "advancedVideoPlayerDiagnosticLevelLocked": false,
- "advancedVideoPlayerHardwareDecodingMode": "Auto",
- "advancedVideoPlayerHardwareDecodingModeLocked": false
}, - "clientProfileAlarmManager": {
- "alarmManagerPlaySoundNotifications": "No",
- "alarmManagerPlaySoundNotificationsLocked": false,
- "alarmManagerShowDesktopNotifications": "No",
- "alarmManagerShowDesktopNotificationsLocked": false
}, - "clientProfileExport": {
- "exportDestinationType": "Both",
- "exportDestinationTypeLocked": false,
- "exportMergeAddPadding": "No",
- "exportMergeAddPaddingLocked": false,
- "exportMergeFormat": "MP4",
- "exportMergeFormatLocked": false,
- "exportMergeFramesPerSecond": "Fps30",
- "exportMergeFramesPerSecondLocked": false,
- "exportMergeMediaPlayerFormat": "Unavailable",
- "exportMergeMediaPlayerFormatLocked": true,
- "exportMergePreventUpscaling": "No",
- "exportMergePreventUpscalingLocked": false,
- "exportMergeQuality": "Medium",
- "exportMergeQualityLocked": false,
- "exportMergeResolution": "FullHD",
- "exportMergeResolutionLocked": false,
- "exportMergeVideoClipType": "Both",
- "exportMergeVideoClipTypeLocked": false,
- "exportPrivacyMask": "Available",
- "exportPrivacyMaskLocked": false,
- "exportSmartClientPlayerEncryptDatabases": "Yes",
- "exportSmartClientPlayerEncryptDatabasesLocked": true,
- "exportSmartClientPlayerEncryptionStrength": "AES256",
- "exportSmartClientPlayerEncryptionStrengthLocked": true,
- "exportSmartClientPlayerEncryptPassword": "string",
- "exportSmartClientPlayerEncryptPasswordLocked": false,
- "exportSmartClientPlayerFormat": "Available",
- "exportSmartClientPlayerFormatLocked": false,
- "exportSmartClientPlayerGlobalCommentsContent": "string",
- "exportSmartClientPlayerGlobalCommentsContentLocked": false,
- "exportSmartClientPlayerGlobalCommentsMode": "Optional",
- "exportSmartClientPlayerGlobalCommentsModeLocked": false,
- "exportSmartClientPlayerIncludePlayer": "Yes",
- "exportSmartClientPlayerIncludePlayerLocked": false,
- "exportSmartClientPlayerIndividualCommentsMode": "Optional",
- "exportSmartClientPlayerIndividualCommentsModeLocked": false,
- "exportSmartClientPlayerLockForReExport": "Yes",
- "exportSmartClientPlayerLockForReExportLocked": true,
- "exportSmartClientPlayerSignData": "Yes",
- "exportSmartClientPlayerSignDataLocked": true,
- "exportStillImageFormat": "Unavailable",
- "exportStillImageFormatLocked": true,
- "exportStillImageTimestamp": "No",
- "exportStillImageTimestampLocked": false,
- "exportVideoClipCodecProperties": "Available",
- "exportVideoClipCodecPropertiesLocked": false,
- "exportVideoClipFormat": "Unavailable",
- "exportVideoClipFormatLocked": true,
- "exportVideoClipFrameRate": "No",
- "exportVideoClipFrameRateLocked": false,
- "exportVideoClipOutputType": "MKV",
- "exportVideoClipOutputTypeLocked": true,
- "exportVideoClipTextsContent": "string",
- "exportVideoClipTextsContentLocked": false,
- "exportVideoClipTextsMode": "Optional",
- "exportVideoClipTimestamp": "No",
- "exportVideoClipTimestampLocked": false,
- "exportVideoClipType": "Both",
- "exportVideoClipTypeLocked": false,
- "functionsPlaybackExportPath": "Default",
- "functionsPlaybackExportPathCustom": "C:\\Export",
- "functionsPlaybackExportPathCustomLocked": false,
- "panesPlaybackExport": "Available"
}, - "clientProfileGeneral": {
- "alarmManagerTab": "Available",
- "applicationAutoLogin": "Available",
- "applicationEvidenceLock": "Available",
- "applicationExitButton": "Available",
- "applicationHideMousePointerTimeout": "Seconds_5",
- "applicationHideMousePointerTimeoutLocked": false,
- "applicationInactivityTimeout": 0,
- "applicationJoystickSetup": "Available",
- "applicationKeyboardSetup": "Available",
- "applicationLiftPrivacyMaskTimeout": "Minutes_30",
- "applicationLogoutButton": "Available",
- "applicationMaximizeButton": "Available",
- "applicationMinimizeButton": "Available",
- "applicationNewSCVersionText": "string",
- "applicationNewSCVersionWindow": "Show",
- "applicationOnlineHelp": "Available",
- "applicationOnlineHelpLocked": false,
- "applicationOptionsDialogButton": "Available",
- "applicationRememberPassword": "Available",
- "applicationSnapshotAvailability": "Available",
- "applicationSnapshotAvailabilityLocked": false,
- "applicationSnapshotPath": "c:\\Snapshots",
- "applicationSnapshotPathLocked": false,
- "applicationStartMode": "Last",
- "applicationStartModeLocked": false,
- "applicationStartView": "Last",
- "applicationStartViewLocked": false,
- "applicationTransactTab": "Available",
- "applicationVideoTutorials": "Available",
- "applicationVideoTutorialsLocked": false,
- "centralizedSearchMaxDeviceCount": "Count_100",
- "centralizedSearchTab": "Available",
- "generalApplicationMaximization": "NormalWindow",
- "generalApplicationMaximizationLocked": false,
- "generalCameraErrors": "BlackImageWithOverlay",
- "generalCameraErrorsLocked": false,
- "generalCameraStoppedMessage": "BlackImageWithOverlay",
- "generalCameraStoppedMessageLocked": false,
- "generalDefaultPtzPointAndClickMode": "VirtualJoystick",
- "generalDefaultPtzPointAndClickModeLocked": false,
- "generalDefaultVideoBuffer": "Standard",
- "generalDefaultVideoBufferLocked": false,
- "generalEmptySpaces": "CompanyLogo",
- "generalEmptySpacesLocked": false,
- "generalHtmlViewItemScripting": "Disabled",
- "generalServerErrors": "Hidden",
- "generalServerErrorsLocked": false,
- "generalTimeInTitlebar": "Show",
- "generalTimeInTitlebarLocked": false,
- "generalTitleBar": "Show",
- "generalTitleBarLocked": false,
- "generalViewGridSpacer": "Pixel1",
- "generalViewGridSpacerLocked": false,
- "systemMonitorTab": "Available",
- "viewsCustomLogoInEmptySpaces": "string"
}, - "clientProfileGisMap": {
- "gisMapBingMapKey": "string",
- "gisMapBingMapKeyLocked": true,
- "gisMapCacheCleanUp": "OnScClose_IfFileNotUsed",
- "gisMapCacheCleanUpLocked": false,
- "gisMapCreateLayerLocation": "No",
- "gisMapCreateLayerLocationLocked": false,
- "gisMapGoogleMapClientId": "string",
- "gisMapGoogleMapClientIdLocked": true,
- "gisMapGoogleMapPrivateKey": "string",
- "gisMapGoogleMapPrivateKeyLocked": true,
- "gisMapGoogleMapSigningSecret": "string",
- "gisMapGoogleMapSigningSecretLocked": true,
- "gisMapOpenStreetMapAlternativeServer": "string",
- "gisMapOpenStreetMapAlternativeServerLocked": true,
- "gisMapOpenStreetMapGeographicLayer": "Unavailable",
- "gisMapOpenStreetMapGeographicLayerLocked": true
}, - "clientProfileLive": {
- "functionsLiveBookmarkMode": "Quick",
- "functionsLiveBookmarkModeLocked": false,
- "functionsLiveBoundingBoxes": "Available",
- "functionsLiveBoundingBoxesLocked": false,
- "functionsLiveCameraPlayback": "Available",
- "functionsLiveCameraPlaybackLocked": false,
- "functionsLiveOverlayButtons": "Available",
- "functionsLiveOverlayButtonsLocked": false,
- "functionsLivePrintAvailability": "Available",
- "functionsLivePrintAvailabilityLocked": false,
- "panesLiveAudio": "Available",
- "panesLiveAudioLocked": false,
- "panesLiveEvents": "Available",
- "panesLiveEventsLocked": false,
- "panesLiveMIPPlugin": "Available",
- "panesLiveMIPPluginLocked": false,
- "panesLiveOutputs": "Available",
- "panesLiveOutputsLocked": false,
- "panesLiveSystemOverview": "Available",
- "panesLiveSystemOverviewLocked": false,
- "panesLiveTab": "Available",
- "panesLiveViews": "Available",
- "panesLiveViewsLocked": false
}, - "clientProfilePlayback": {
- "functionsPlaybackBookmarkMode": "Detail",
- "functionsPlaybackBookmarkModeLocked": false,
- "functionsPlaybackBoundingBoxes": "Available",
- "functionsPlaybackBoundingBoxesLocked": false,
- "functionsPlaybackIndependentPlayback": "Available",
- "functionsPlaybackPrintReportCopyRights": "Show",
- "functionsPlaybackPrintReportHeadline": "Default",
- "functionsPlaybackPrintReportHeadlineLocked": false,
- "functionsPlaybackPrintReportHeadlineText": "string",
- "functionsPlaybackPrintReportUserInformation": "Show",
- "panesPlaybackAudio": "Available",
- "panesPlaybackAudioLocked": false,
- "panesPlaybackMIPPlugin": "Available",
- "panesPlaybackMIPPluginLocked": false,
- "panesPlaybackPrint": "Available",
- "panesPlaybackPrintLocked": false,
- "panesPlaybackSystemOverview": "Available",
- "panesPlaybackSystemOverviewLocked": false,
- "panesPlaybackTab": "Available",
- "panesPlaybackViews": "Available",
- "panesPlaybackViewsLocked": false
}, - "clientProfileSetup": {
- "functionsSetupEnableVideoBufferingOption": "Available",
- "functionsSetupEnableVideoBufferingOptionLocked": false,
- "functionsSetupOverlayButtons": "Available",
- "functionsSetupOverlayButtonsLocked": false,
- "mapEditGisMap": "Available",
- "mapEditMaps": "Available",
- "panesSetupMIPPlugin": "Available",
- "panesSetupMIPPluginLocked": false,
- "panesSetupOverlayButtons": "Available",
- "panesSetupOverlayButtonsLocked": false,
- "panesSetupProperties": "Available",
- "panesSetupPropertiesLocked": false,
- "panesSetupSystemOverview": "Available",
- "panesSetupSystemOverviewLocked": false,
- "panesSetupTab": "Available",
- "panesSetupViews": "Available",
- "panesSetupViewsLocked": false
}, - "clientProfileTimeline": {
- "timelineAllCamerasTimeline": "Show",
- "timelineAllCamerasTimelineLocked": false,
- "timelineBookmarks": "Show",
- "timelineBookmarksLocked": false,
- "timelineHideForNormalViewsTimeout": "Disabled",
- "timelineHideForNormalViewsTimeoutLocked": false,
- "timelineHideForSmartWallViewsTimeout": "Seconds_5",
- "timelineHideForSmartWallViewsTimeoutLocked": false,
- "timelineIncomingAudio": "Hide",
- "timelineIncomingAudioLocked": false,
- "timelineMipData": "Hide",
- "timelineMipDataLocked": false,
- "timelineMipMarker": "Hide",
- "timelineMipMarkerLocked": false,
- "timelineMotion": "Show",
- "timelineMotionLocked": false,
- "timelineOutgoingAudio": "Hide",
- "timelineOutgoingAudioLocked": false,
- "timelineSkipGaps": "DoSkipGaps",
- "timelineSkipGapsLocked": false
}, - "clientProfileViewLayouts": {
- "disabledViewLayouts": [
- {
- "type": "layouts",
- "id": "4514ed40-a3ee-4b47-94ca-3bb7e9f14249"
}
]
}, - "relations": {
- "self": {
- "type": "clientProfiles",
- "id": "210ff07d-91e6-48f4-8ade-ae79d29d749e"
}
}
}
{- "data": {
- "description": "ClientProfile may have a long description",
- "displayName": "My profile",
- "id": "210ff07d-91e6-48f4-8ade-ae79d29d749e",
- "isDefaultProfile": false,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "My profile",
- "clientProfileAccessControl": {
- "displayName": "Access Control",
- "showAccessRequestNotifications": "Yes",
- "showAccessRequestNotificationsLocked": false
}, - "clientProfileAdvanced": {
- "advancedAdaptiveStreaming": "Disabled",
- "advancedAdaptiveStreamingLocked": false,
- "advancedDeinterlacing": "Default",
- "advancedDeinterlacingLocked": false,
- "advancedMaxDecodingThreads": "Auto",
- "advancedMaxDecodingThreadsLocked": false,
- "advancedMulticast": "Enabled",
- "advancedMulticastLocked": false,
- "advancedTimeZone": "LocalMachine",
- "advancedTimeZoneCustom": "Dateline Standard Time",
- "advancedTimeZoneCustomLocked": false,
- "advancedTimeZoneLocked": false,
- "advancedVideoPlayerDiagnosticLevel": "Level0",
- "advancedVideoPlayerDiagnosticLevelLocked": false,
- "advancedVideoPlayerHardwareDecodingMode": "Auto",
- "advancedVideoPlayerHardwareDecodingModeLocked": false,
- "displayName": "Advanced"
}, - "clientProfileAlarmManager": {
- "alarmManagerPlaySoundNotifications": "No",
- "alarmManagerPlaySoundNotificationsLocked": false,
- "alarmManagerShowDesktopNotifications": "No",
- "alarmManagerShowDesktopNotificationsLocked": false,
- "displayName": "Alarm Manager"
}, - "clientProfileExport": {
- "displayName": "Export",
- "exportDestinationType": "Both",
- "exportDestinationTypeLocked": false,
- "exportMergeAddPadding": "No",
- "exportMergeAddPaddingLocked": false,
- "exportMergeFormat": "MP4",
- "exportMergeFormatLocked": false,
- "exportMergeFramesPerSecond": "Fps30",
- "exportMergeFramesPerSecondLocked": false,
- "exportMergeMediaPlayerFormat": "Unavailable",
- "exportMergeMediaPlayerFormatLocked": true,
- "exportMergePreventUpscaling": "No",
- "exportMergePreventUpscalingLocked": false,
- "exportMergeQuality": "Medium",
- "exportMergeQualityLocked": false,
- "exportMergeResolution": "FullHD",
- "exportMergeResolutionLocked": false,
- "exportMergeVideoClipType": "Both",
- "exportMergeVideoClipTypeLocked": false,
- "exportPrivacyMask": "Available",
- "exportPrivacyMaskLocked": false,
- "exportSmartClientPlayerEncryptDatabases": "Yes",
- "exportSmartClientPlayerEncryptDatabasesLocked": true,
- "exportSmartClientPlayerEncryptionStrength": "AES256",
- "exportSmartClientPlayerEncryptionStrengthLocked": true,
- "exportSmartClientPlayerEncryptPassword": "string",
- "exportSmartClientPlayerEncryptPasswordLocked": false,
- "exportSmartClientPlayerFormat": "Available",
- "exportSmartClientPlayerFormatLocked": false,
- "exportSmartClientPlayerGlobalCommentsContent": "string",
- "exportSmartClientPlayerGlobalCommentsContentLocked": false,
- "exportSmartClientPlayerGlobalCommentsMode": "Optional",
- "exportSmartClientPlayerGlobalCommentsModeLocked": false,
- "exportSmartClientPlayerIncludePlayer": "Yes",
- "exportSmartClientPlayerIncludePlayerLocked": false,
- "exportSmartClientPlayerIndividualCommentsMode": "Optional",
- "exportSmartClientPlayerIndividualCommentsModeLocked": false,
- "exportSmartClientPlayerLockForReExport": "Yes",
- "exportSmartClientPlayerLockForReExportLocked": true,
- "exportSmartClientPlayerSignData": "Yes",
- "exportSmartClientPlayerSignDataLocked": true,
- "exportStillImageFormat": "Unavailable",
- "exportStillImageFormatLocked": true,
- "exportStillImageTimestamp": "No",
- "exportStillImageTimestampLocked": false,
- "exportVideoClipCodecProperties": "Available",
- "exportVideoClipCodecPropertiesLocked": false,
- "exportVideoClipFormat": "Unavailable",
- "exportVideoClipFormatLocked": true,
- "exportVideoClipFrameRate": "No",
- "exportVideoClipFrameRateLocked": false,
- "exportVideoClipOutputType": "MKV",
- "exportVideoClipOutputTypeLocked": true,
- "exportVideoClipTextsContent": "string",
- "exportVideoClipTextsContentLocked": false,
- "exportVideoClipTextsMode": "Optional",
- "exportVideoClipTimestamp": "No",
- "exportVideoClipTimestampLocked": false,
- "exportVideoClipType": "Both",
- "exportVideoClipTypeLocked": false,
- "functionsPlaybackExportPath": "Default",
- "functionsPlaybackExportPathCustom": "C:\\Export",
- "functionsPlaybackExportPathCustomLocked": false,
- "panesPlaybackExport": "Available"
}, - "clientProfileGeneral": {
- "alarmManagerTab": "Available",
- "applicationAutoLogin": "Available",
- "applicationEvidenceLock": "Available",
- "applicationExitButton": "Available",
- "applicationHideMousePointerTimeout": "Seconds_5",
- "applicationHideMousePointerTimeoutLocked": false,
- "applicationInactivityTimeout": 0,
- "applicationJoystickSetup": "Available",
- "applicationKeyboardSetup": "Available",
- "applicationLiftPrivacyMaskTimeout": "Minutes_30",
- "applicationLogoutButton": "Available",
- "applicationMaximizeButton": "Available",
- "applicationMinimizeButton": "Available",
- "applicationNewSCVersionText": "string",
- "applicationNewSCVersionWindow": "Show",
- "applicationOnlineHelp": "Available",
- "applicationOnlineHelpLocked": false,
- "applicationOptionsDialogButton": "Available",
- "applicationRememberPassword": "Available",
- "applicationSnapshotAvailability": "Available",
- "applicationSnapshotAvailabilityLocked": false,
- "applicationSnapshotPath": "c:\\Snapshots",
- "applicationSnapshotPathLocked": false,
- "applicationStartMode": "Last",
- "applicationStartModeLocked": false,
- "applicationStartView": "Last",
- "applicationStartViewLocked": false,
- "applicationTransactTab": "Available",
- "applicationVideoTutorials": "Available",
- "applicationVideoTutorialsLocked": false,
- "centralizedSearchMaxDeviceCount": "Count_100",
- "centralizedSearchTab": "Available",
- "displayName": "General",
- "generalApplicationMaximization": "NormalWindow",
- "generalApplicationMaximizationLocked": false,
- "generalCameraErrors": "BlackImageWithOverlay",
- "generalCameraErrorsLocked": false,
- "generalCameraStoppedMessage": "BlackImageWithOverlay",
- "generalCameraStoppedMessageLocked": false,
- "generalDefaultPtzPointAndClickMode": "VirtualJoystick",
- "generalDefaultPtzPointAndClickModeLocked": false,
- "generalDefaultVideoBuffer": "Standard",
- "generalDefaultVideoBufferLocked": false,
- "generalEmptySpaces": "CompanyLogo",
- "generalEmptySpacesLocked": false,
- "generalHtmlViewItemScripting": "Disabled",
- "generalServerErrors": "Hidden",
- "generalServerErrorsLocked": false,
- "generalTimeInTitlebar": "Show",
- "generalTimeInTitlebarLocked": false,
- "generalTitleBar": "Show",
- "generalTitleBarLocked": false,
- "generalViewGridSpacer": "Pixel1",
- "generalViewGridSpacerLocked": false,
- "systemMonitorTab": "Available",
- "viewsCustomLogoInEmptySpaces": "string"
}, - "clientProfileGisMap": {
- "displayName": "Smart map",
- "gisMapBingMapKey": "string",
- "gisMapBingMapKeyLocked": true,
- "gisMapCacheCleanUp": "OnScClose_IfFileNotUsed",
- "gisMapCacheCleanUpLocked": false,
- "gisMapCreateLayerLocation": "No",
- "gisMapCreateLayerLocationLocked": false,
- "gisMapGoogleMapClientId": "string",
- "gisMapGoogleMapClientIdLocked": true,
- "gisMapGoogleMapPrivateKey": "string",
- "gisMapGoogleMapPrivateKeyLocked": true,
- "gisMapGoogleMapSigningSecret": "string",
- "gisMapGoogleMapSigningSecretLocked": true,
- "gisMapOpenStreetMapAlternativeServer": "string",
- "gisMapOpenStreetMapAlternativeServerLocked": true,
- "gisMapOpenStreetMapGeographicLayer": "Unavailable",
- "gisMapOpenStreetMapGeographicLayerLocked": true
}, - "clientProfileLive": {
- "displayName": "Live",
- "functionsLiveBookmarkMode": "Quick",
- "functionsLiveBookmarkModeLocked": false,
- "functionsLiveBoundingBoxes": "Available",
- "functionsLiveBoundingBoxesLocked": false,
- "functionsLiveCameraPlayback": "Available",
- "functionsLiveCameraPlaybackLocked": false,
- "functionsLiveOverlayButtons": "Available",
- "functionsLiveOverlayButtonsLocked": false,
- "functionsLivePrintAvailability": "Available",
- "functionsLivePrintAvailabilityLocked": false,
- "panesLiveAudio": "Available",
- "panesLiveAudioLocked": false,
- "panesLiveEvents": "Available",
- "panesLiveEventsLocked": false,
- "panesLiveMIPPlugin": "Available",
- "panesLiveMIPPluginLocked": false,
- "panesLiveOutputs": "Available",
- "panesLiveOutputsLocked": false,
- "panesLiveSystemOverview": "Available",
- "panesLiveSystemOverviewLocked": false,
- "panesLiveTab": "Available",
- "panesLiveViews": "Available",
- "panesLiveViewsLocked": false
}, - "clientProfilePlayback": {
- "displayName": "Playback",
- "functionsPlaybackBookmarkMode": "Detail",
- "functionsPlaybackBookmarkModeLocked": false,
- "functionsPlaybackBoundingBoxes": "Available",
- "functionsPlaybackBoundingBoxesLocked": false,
- "functionsPlaybackIndependentPlayback": "Available",
- "functionsPlaybackPrintReportCopyRights": "Show",
- "functionsPlaybackPrintReportHeadline": "Default",
- "functionsPlaybackPrintReportHeadlineLocked": false,
- "functionsPlaybackPrintReportHeadlineText": "string",
- "functionsPlaybackPrintReportUserInformation": "Show",
- "panesPlaybackAudio": "Available",
- "panesPlaybackAudioLocked": false,
- "panesPlaybackMIPPlugin": "Available",
- "panesPlaybackMIPPluginLocked": false,
- "panesPlaybackPrint": "Available",
- "panesPlaybackPrintLocked": false,
- "panesPlaybackSystemOverview": "Available",
- "panesPlaybackSystemOverviewLocked": false,
- "panesPlaybackTab": "Available",
- "panesPlaybackViews": "Available",
- "panesPlaybackViewsLocked": false
}, - "clientProfileSetup": {
- "displayName": "Setup",
- "functionsSetupEnableVideoBufferingOption": "Available",
- "functionsSetupEnableVideoBufferingOptionLocked": false,
- "functionsSetupOverlayButtons": "Available",
- "functionsSetupOverlayButtonsLocked": false,
- "mapEditGisMap": "Available",
- "mapEditMaps": "Available",
- "panesSetupMIPPlugin": "Available",
- "panesSetupMIPPluginLocked": false,
- "panesSetupOverlayButtons": "Available",
- "panesSetupOverlayButtonsLocked": false,
- "panesSetupProperties": "Available",
- "panesSetupPropertiesLocked": false,
- "panesSetupSystemOverview": "Available",
- "panesSetupSystemOverviewLocked": false,
- "panesSetupTab": "Available",
- "panesSetupViews": "Available",
- "panesSetupViewsLocked": false
}, - "clientProfileTimeline": {
- "displayName": "Timeline",
- "timelineAllCamerasTimeline": "Show",
- "timelineAllCamerasTimelineLocked": false,
- "timelineBookmarks": "Show",
- "timelineBookmarksLocked": false,
- "timelineHideForNormalViewsTimeout": "Disabled",
- "timelineHideForNormalViewsTimeoutLocked": false,
- "timelineHideForSmartWallViewsTimeout": "Seconds_5",
- "timelineHideForSmartWallViewsTimeoutLocked": false,
- "timelineIncomingAudio": "Hide",
- "timelineIncomingAudioLocked": false,
- "timelineMipData": "Hide",
- "timelineMipDataLocked": false,
- "timelineMipMarker": "Hide",
- "timelineMipMarkerLocked": false,
- "timelineMotion": "Show",
- "timelineMotionLocked": false,
- "timelineOutgoingAudio": "Hide",
- "timelineOutgoingAudioLocked": false,
- "timelineSkipGaps": "DoSkipGaps",
- "timelineSkipGapsLocked": false
}, - "clientProfileViewLayouts": {
- "disabledViewLayouts": [
- {
- "type": "layouts",
- "id": "4514ed40-a3ee-4b47-94ca-3bb7e9f14249"
}
], - "displayName": "View layouts"
}, - "relations": {
- "self": {
- "type": "clientProfiles",
- "id": "210ff07d-91e6-48f4-8ade-ae79d29d749e"
}
}
}
}
Client profile
id required | string <guid> Example: 210ff07d-91e6-48f4-8ade-ae79d29d749e Id of the object |
task required | string Example: task=ClientProfileDownPriority task=ClientProfileUpPriority, or task=ClientProfileDownPriority ClientProfileUpPriority - Move profile priority up ClientProfileDownPriority - Move profile priority down |
{- "result": {
- "state": "Success"
}
}
Get array of all evidenceLockProfiles
{- "array": [
- {
- "displayName": "Default evidence lock profile",
- "id": "231ee2e9-b527-494d-bc14-c5eda3745681",
- "name": "Default evidence lock profile",
- "retentionTimeOptions": [
- "string"
], - "relations": {
- "self": {
- "type": "evidenceLockProfiles",
- "id": "231ee2e9-b527-494d-bc14-c5eda3745681"
}
}
}
]
}
Add new evidenceLockProfiles
name | string Name |
retentionTimeOptions | Array of strings Retention time options |
object |
{- "name": "Default evidence lock profile",
- "retentionTimeOptions": [
- "string"
], - "relations": {
- "self": {
- "type": "evidenceLockProfiles",
- "id": "231ee2e9-b527-494d-bc14-c5eda3745681"
}
}
}
{- "result": {
- "displayName": "Default evidence lock profile",
- "id": "231ee2e9-b527-494d-bc14-c5eda3745681",
- "name": "Default evidence lock profile",
- "retentionTimeOptions": [
- "string"
], - "relations": {
- "self": {
- "type": "evidenceLockProfiles",
- "id": "231ee2e9-b527-494d-bc14-c5eda3745681"
}
}
}
}
Get specific object of evidenceLockProfiles
id required | string <guid> Example: 231ee2e9-b527-494d-bc14-c5eda3745681 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "displayName": "Default evidence lock profile",
- "id": "231ee2e9-b527-494d-bc14-c5eda3745681",
- "name": "Default evidence lock profile",
- "retentionTimeOptions": [
- "string"
], - "relations": {
- "self": {
- "type": "evidenceLockProfiles",
- "id": "231ee2e9-b527-494d-bc14-c5eda3745681"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Update all fields on evidenceLockProfiles
id required | string <guid> Example: 231ee2e9-b527-494d-bc14-c5eda3745681 Id of the object |
name | string Name |
retentionTimeOptions | Array of strings Retention time options |
object |
{- "name": "Default evidence lock profile",
- "retentionTimeOptions": [
- "string"
], - "relations": {
- "self": {
- "type": "evidenceLockProfiles",
- "id": "231ee2e9-b527-494d-bc14-c5eda3745681"
}
}
}
{- "data": {
- "displayName": "Default evidence lock profile",
- "id": "231ee2e9-b527-494d-bc14-c5eda3745681",
- "name": "Default evidence lock profile",
- "retentionTimeOptions": [
- "string"
], - "relations": {
- "self": {
- "type": "evidenceLockProfiles",
- "id": "231ee2e9-b527-494d-bc14-c5eda3745681"
}
}
}
}
Update provided fields on evidenceLockProfiles
id required | string <guid> Example: 231ee2e9-b527-494d-bc14-c5eda3745681 Id of the object |
name | string Name |
retentionTimeOptions | Array of strings Retention time options |
object |
{- "name": "Default evidence lock profile",
- "retentionTimeOptions": [
- "string"
], - "relations": {
- "self": {
- "type": "evidenceLockProfiles",
- "id": "231ee2e9-b527-494d-bc14-c5eda3745681"
}
}
}
{- "data": {
- "displayName": "Default evidence lock profile",
- "id": "231ee2e9-b527-494d-bc14-c5eda3745681",
- "name": "Default evidence lock profile",
- "retentionTimeOptions": [
- "string"
], - "relations": {
- "self": {
- "type": "evidenceLockProfiles",
- "id": "231ee2e9-b527-494d-bc14-c5eda3745681"
}
}
}
}
{- "array": [
- {
- "color": "#FFFF00AE",
- "displayName": "MyGisMapLocation",
- "id": "42bb29be-4bb2-4b59-986a-6314ce59569c",
- "name": "MyGisMapLocation",
- "positionX": 42,
- "positionY": 84,
- "scale": 1,
- "relations": {
- "self": {
- "type": "gisMapLocations",
- "id": "42bb29be-4bb2-4b59-986a-6314ce59569c"
}
}
}
]
}
GIS map locations
color | string Color. Define the color of the marker. Value is a string formatted with a leading hash sign. Default value is a red marked with value #FFFF5611 |
name | string Name |
positionX | number <double> Longitude. Contains the longitude value as a double, e.g. -74.0 for New York and is culture invariant always using decimal point. |
positionY | number <double> Latitude. Contains the latitude value as a double, e.g. 40.716 for New York, and is culture invariant always using decimal point. |
scale | number <double> Scale. Defines how to scale map when going to this location. A value of 2 million will show approximately an area of 300x300 kilometers / 200x200 miles. A value of 2000 will show approximately a city block. |
object |
{- "color": "#FFFF00AE",
- "name": "MyGisMapLocation",
- "positionX": 42,
- "positionY": 84,
- "scale": 1,
- "relations": {
- "self": {
- "type": "gisMapLocations",
- "id": "42bb29be-4bb2-4b59-986a-6314ce59569c"
}
}
}
{- "result": {
- "color": "#FFFF00AE",
- "displayName": "MyGisMapLocation",
- "id": "42bb29be-4bb2-4b59-986a-6314ce59569c",
- "name": "MyGisMapLocation",
- "positionX": 42,
- "positionY": 84,
- "scale": 1,
- "relations": {
- "self": {
- "type": "gisMapLocations",
- "id": "42bb29be-4bb2-4b59-986a-6314ce59569c"
}
}
}
}
GIS map locations
id required | string <guid> Example: 42bb29be-4bb2-4b59-986a-6314ce59569c Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "color": "#FFFF00AE",
- "displayName": "MyGisMapLocation",
- "id": "42bb29be-4bb2-4b59-986a-6314ce59569c",
- "name": "MyGisMapLocation",
- "positionX": 42,
- "positionY": 84,
- "scale": 1,
- "relations": {
- "self": {
- "type": "gisMapLocations",
- "id": "42bb29be-4bb2-4b59-986a-6314ce59569c"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
GIS map locations
id required | string <guid> Example: 42bb29be-4bb2-4b59-986a-6314ce59569c Id of the object |
color | string Color. Define the color of the marker. Value is a string formatted with a leading hash sign. Default value is a red marked with value #FFFF5611 |
name | string Name |
positionX | number <double> Longitude. Contains the longitude value as a double, e.g. -74.0 for New York and is culture invariant always using decimal point. |
positionY | number <double> Latitude. Contains the latitude value as a double, e.g. 40.716 for New York, and is culture invariant always using decimal point. |
scale | number <double> Scale. Defines how to scale map when going to this location. A value of 2 million will show approximately an area of 300x300 kilometers / 200x200 miles. A value of 2000 will show approximately a city block. |
object |
{- "color": "#FFFF00AE",
- "name": "MyGisMapLocation",
- "positionX": 42,
- "positionY": 84,
- "scale": 1,
- "relations": {
- "self": {
- "type": "gisMapLocations",
- "id": "42bb29be-4bb2-4b59-986a-6314ce59569c"
}
}
}
{- "data": {
- "color": "#FFFF00AE",
- "displayName": "MyGisMapLocation",
- "id": "42bb29be-4bb2-4b59-986a-6314ce59569c",
- "name": "MyGisMapLocation",
- "positionX": 42,
- "positionY": 84,
- "scale": 1,
- "relations": {
- "self": {
- "type": "gisMapLocations",
- "id": "42bb29be-4bb2-4b59-986a-6314ce59569c"
}
}
}
}
GIS map locations
id required | string <guid> Example: 42bb29be-4bb2-4b59-986a-6314ce59569c Id of the object |
color | string Color. Define the color of the marker. Value is a string formatted with a leading hash sign. Default value is a red marked with value #FFFF5611 |
name | string Name |
positionX | number <double> Longitude. Contains the longitude value as a double, e.g. -74.0 for New York and is culture invariant always using decimal point. |
positionY | number <double> Latitude. Contains the latitude value as a double, e.g. 40.716 for New York, and is culture invariant always using decimal point. |
scale | number <double> Scale. Defines how to scale map when going to this location. A value of 2 million will show approximately an area of 300x300 kilometers / 200x200 miles. A value of 2000 will show approximately a city block. |
object |
{- "color": "#FFFF00AE",
- "name": "MyGisMapLocation",
- "positionX": 42,
- "positionY": 84,
- "scale": 1,
- "relations": {
- "self": {
- "type": "gisMapLocations",
- "id": "42bb29be-4bb2-4b59-986a-6314ce59569c"
}
}
}
{- "data": {
- "color": "#FFFF00AE",
- "displayName": "MyGisMapLocation",
- "id": "42bb29be-4bb2-4b59-986a-6314ce59569c",
- "name": "MyGisMapLocation",
- "positionX": 42,
- "positionY": 84,
- "scale": 1,
- "relations": {
- "self": {
- "type": "gisMapLocations",
- "id": "42bb29be-4bb2-4b59-986a-6314ce59569c"
}
}
}
}
{- "array": [
- {
- "description": "LayoutGroup may have a long description",
- "displayName": "4:3",
- "id": "b0e14cf5-0ead-4612-a2d0-9d071073c50d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "layouts": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "definitionXml": "<ViewLayout ViewLayoutType=\\\"VideoOS.RemoteClient.Application.Data.ViewLayouts.ViewLayoutCustom, VideoOS.RemoteClient.Application\\\" Id=\\\"e4391ae5-7d96-4a0f-835a-9019a73f269a\\\" ViewLayoutGroupId=\\\"7EB5B9CC-D56F-4785-BA72-4E71FADA8C6B\\\"><ViewLayoutIcon>iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOwwAADsMBx2+oZAAAAF5JREFUOE+t0jEKACEMRFFPKoKdhWAREPHuf9k5wsTil3mBkAKUTKnhf3G59+Im4JyDm4C9N24CIgI3AWst3ATMOXETMMbATUDmiQT03nET0FrDTUCtFbc3N0gfMQt8Az2T1PzTGoAAAAAASUVORK5CYII=</ViewLayoutIcon><ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>1000</Width><Height>666</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>666</Y></Position><Size><Width>1000</Width><Height>333</Height></Size></ViewItem></ViewItems></ViewLayout>",
- "description": "Layout may have a long description",
- "displayName": "1 + 1",
- "id": "314254b7-be6b-4c5d-bf6b-aae579bf88c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "1 + 1",
- "relations": {
- "self": {
- "type": "layouts",
- "id": "314254b7-be6b-4c5d-bf6b-aae579bf88c0"
}, - "parent": {
- "type": "layoutGroups",
- "id": "b0e14cf5-0ead-4612-a2d0-9d071073c50d"
}
}
}
], - "name": "4:3",
- "relations": {
- "self": {
- "type": "layoutGroups",
- "id": "b0e14cf5-0ead-4612-a2d0-9d071073c50d"
}
}
}
]
}
Get specific object of layoutGroups
id required | string <guid> Example: b0e14cf5-0ead-4612-a2d0-9d071073c50d Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "description": "LayoutGroup may have a long description",
- "displayName": "4:3",
- "id": "b0e14cf5-0ead-4612-a2d0-9d071073c50d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "layouts": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "definitionXml": "<ViewLayout ViewLayoutType=\\\"VideoOS.RemoteClient.Application.Data.ViewLayouts.ViewLayoutCustom, VideoOS.RemoteClient.Application\\\" Id=\\\"e4391ae5-7d96-4a0f-835a-9019a73f269a\\\" ViewLayoutGroupId=\\\"7EB5B9CC-D56F-4785-BA72-4E71FADA8C6B\\\"><ViewLayoutIcon>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</ViewLayoutIcon><ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>1000</Width><Height>666</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>666</Y></Position><Size><Width>1000</Width><Height>333</Height></Size></ViewItem></ViewItems></ViewLayout>",
- "description": "Layout may have a long description",
- "displayName": "1 + 1",
- "id": "314254b7-be6b-4c5d-bf6b-aae579bf88c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "1 + 1",
- "relations": {
- "self": {
- "type": "layouts",
- "id": "314254b7-be6b-4c5d-bf6b-aae579bf88c0"
}, - "parent": {
- "type": "layoutGroups",
- "id": "b0e14cf5-0ead-4612-a2d0-9d071073c50d"
}
}
}
], - "name": "4:3",
- "relations": {
- "self": {
- "type": "layoutGroups",
- "id": "b0e14cf5-0ead-4612-a2d0-9d071073c50d"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Update all fields on layoutGroups
id required | string <guid> Example: b0e14cf5-0ead-4612-a2d0-9d071073c50d Id of the object |
object |
{- "relations": {
- "self": {
- "type": "layoutGroups",
- "id": "b0e14cf5-0ead-4612-a2d0-9d071073c50d"
}
}
}
{- "data": {
- "description": "LayoutGroup may have a long description",
- "displayName": "4:3",
- "id": "b0e14cf5-0ead-4612-a2d0-9d071073c50d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "layouts": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "definitionXml": "<ViewLayout ViewLayoutType=\\\"VideoOS.RemoteClient.Application.Data.ViewLayouts.ViewLayoutCustom, VideoOS.RemoteClient.Application\\\" Id=\\\"e4391ae5-7d96-4a0f-835a-9019a73f269a\\\" ViewLayoutGroupId=\\\"7EB5B9CC-D56F-4785-BA72-4E71FADA8C6B\\\"><ViewLayoutIcon>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</ViewLayoutIcon><ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>1000</Width><Height>666</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>666</Y></Position><Size><Width>1000</Width><Height>333</Height></Size></ViewItem></ViewItems></ViewLayout>",
- "description": "Layout may have a long description",
- "displayName": "1 + 1",
- "id": "314254b7-be6b-4c5d-bf6b-aae579bf88c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "1 + 1",
- "relations": {
- "self": {
- "type": "layouts",
- "id": "314254b7-be6b-4c5d-bf6b-aae579bf88c0"
}, - "parent": {
- "type": "layoutGroups",
- "id": "b0e14cf5-0ead-4612-a2d0-9d071073c50d"
}
}
}
], - "name": "4:3",
- "relations": {
- "self": {
- "type": "layoutGroups",
- "id": "b0e14cf5-0ead-4612-a2d0-9d071073c50d"
}
}
}
}
Update provided fields on layoutGroups
id required | string <guid> Example: b0e14cf5-0ead-4612-a2d0-9d071073c50d Id of the object |
object |
{- "relations": {
- "self": {
- "type": "layoutGroups",
- "id": "b0e14cf5-0ead-4612-a2d0-9d071073c50d"
}
}
}
{- "data": {
- "description": "LayoutGroup may have a long description",
- "displayName": "4:3",
- "id": "b0e14cf5-0ead-4612-a2d0-9d071073c50d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "layouts": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "definitionXml": "<ViewLayout ViewLayoutType=\\\"VideoOS.RemoteClient.Application.Data.ViewLayouts.ViewLayoutCustom, VideoOS.RemoteClient.Application\\\" Id=\\\"e4391ae5-7d96-4a0f-835a-9019a73f269a\\\" ViewLayoutGroupId=\\\"7EB5B9CC-D56F-4785-BA72-4E71FADA8C6B\\\"><ViewLayoutIcon>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</ViewLayoutIcon><ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>1000</Width><Height>666</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>666</Y></Position><Size><Width>1000</Width><Height>333</Height></Size></ViewItem></ViewItems></ViewLayout>",
- "description": "Layout may have a long description",
- "displayName": "1 + 1",
- "id": "314254b7-be6b-4c5d-bf6b-aae579bf88c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "1 + 1",
- "relations": {
- "self": {
- "type": "layouts",
- "id": "314254b7-be6b-4c5d-bf6b-aae579bf88c0"
}, - "parent": {
- "type": "layoutGroups",
- "id": "b0e14cf5-0ead-4612-a2d0-9d071073c50d"
}
}
}
], - "name": "4:3",
- "relations": {
- "self": {
- "type": "layoutGroups",
- "id": "b0e14cf5-0ead-4612-a2d0-9d071073c50d"
}
}
}
}
Get array of all layouts
id required | string <guid> Example: b0e14cf5-0ead-4612-a2d0-9d071073c50d Id of the layoutGroup object |
{- "array": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "definitionXml": "<ViewLayout ViewLayoutType=\\\"VideoOS.RemoteClient.Application.Data.ViewLayouts.ViewLayoutCustom, VideoOS.RemoteClient.Application\\\" Id=\\\"e4391ae5-7d96-4a0f-835a-9019a73f269a\\\" ViewLayoutGroupId=\\\"7EB5B9CC-D56F-4785-BA72-4E71FADA8C6B\\\"><ViewLayoutIcon>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</ViewLayoutIcon><ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>1000</Width><Height>666</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>666</Y></Position><Size><Width>1000</Width><Height>333</Height></Size></ViewItem></ViewItems></ViewLayout>",
- "description": "Layout may have a long description",
- "displayName": "1 + 1",
- "id": "314254b7-be6b-4c5d-bf6b-aae579bf88c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "1 + 1",
- "relations": {
- "self": {
- "type": "layouts",
- "id": "314254b7-be6b-4c5d-bf6b-aae579bf88c0"
}, - "parent": {
- "type": "layoutGroups",
- "id": "b0e14cf5-0ead-4612-a2d0-9d071073c50d"
}
}
}
]
}
Add a layout to a layoutGroups
id required | string <guid> Example: b0e14cf5-0ead-4612-a2d0-9d071073c50d Id of the layoutGroup object |
object |
{- "relations": {
- "self": {
- "type": "layouts",
- "id": "314254b7-be6b-4c5d-bf6b-aae579bf88c0"
}, - "parent": {
- "type": "layoutGroups",
- "id": "b0e14cf5-0ead-4612-a2d0-9d071073c50d"
}
}
}
{- "result": {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "definitionXml": "<ViewLayout ViewLayoutType=\\\"VideoOS.RemoteClient.Application.Data.ViewLayouts.ViewLayoutCustom, VideoOS.RemoteClient.Application\\\" Id=\\\"e4391ae5-7d96-4a0f-835a-9019a73f269a\\\" ViewLayoutGroupId=\\\"7EB5B9CC-D56F-4785-BA72-4E71FADA8C6B\\\"><ViewLayoutIcon>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</ViewLayoutIcon><ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>1000</Width><Height>666</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>666</Y></Position><Size><Width>1000</Width><Height>333</Height></Size></ViewItem></ViewItems></ViewLayout>",
- "description": "Layout may have a long description",
- "displayName": "1 + 1",
- "id": "314254b7-be6b-4c5d-bf6b-aae579bf88c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "1 + 1",
- "relations": {
- "self": {
- "type": "layouts",
- "id": "314254b7-be6b-4c5d-bf6b-aae579bf88c0"
}, - "parent": {
- "type": "layoutGroups",
- "id": "b0e14cf5-0ead-4612-a2d0-9d071073c50d"
}
}
}
}
Get specific layouts
idParent required | string <guid> Example: b0e14cf5-0ead-4612-a2d0-9d071073c50d Id of parent object |
id required | string <guid> Example: b0e14cf5-0ead-4612-a2d0-9d071073c50d Id of the object |
{- "array": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "definitionXml": "<ViewLayout ViewLayoutType=\\\"VideoOS.RemoteClient.Application.Data.ViewLayouts.ViewLayoutCustom, VideoOS.RemoteClient.Application\\\" Id=\\\"e4391ae5-7d96-4a0f-835a-9019a73f269a\\\" ViewLayoutGroupId=\\\"7EB5B9CC-D56F-4785-BA72-4E71FADA8C6B\\\"><ViewLayoutIcon>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</ViewLayoutIcon><ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>1000</Width><Height>666</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>666</Y></Position><Size><Width>1000</Width><Height>333</Height></Size></ViewItem></ViewItems></ViewLayout>",
- "description": "Layout may have a long description",
- "displayName": "1 + 1",
- "id": "314254b7-be6b-4c5d-bf6b-aae579bf88c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "1 + 1",
- "relations": {
- "self": {
- "type": "layouts",
- "id": "314254b7-be6b-4c5d-bf6b-aae579bf88c0"
}, - "parent": {
- "type": "layoutGroups",
- "id": "b0e14cf5-0ead-4612-a2d0-9d071073c50d"
}
}
}
]
}
Remove a layout from a layoutGroups
idParent required | string <guid> Example: b0e14cf5-0ead-4612-a2d0-9d071073c50d Id of parent object |
id required | string <guid> Example: b0e14cf5-0ead-4612-a2d0-9d071073c50d Id of the object |
{- "state": "Success"
}
Get specific object of Monitor
id required | string <guid> Example: ba113936-9a15-4be5-84b6-29a9d0e3cd3f Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "aspectRatio": "Aspect4x3",
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Monitor may have a long description",
- "displayName": "Front desk monitor",
- "emptyViewItems": "Preserve",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f",
- "insertionMethod": "Linked",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "locationX": 0,
- "locationY": 0,
- "monitorPresets": [
- {
- "definitionXml": "<view viewlayouttype=\\\"VideoOS.RemoteClient.Application.Data.ViewLayouts.ViewLayout5x5, VideoOS.RemoteClient.Application\\\" shortcut=\\\"\\\" displayname=\\\"Night\\\" id=\\\"f1e9dcfd-7353-4d26-9475-22800c41d796\\\"><viewitems><viewitem id=\\\"d1001d9e-2b18-46b0-a94e-e354cd50a26c\\\" shortcut=\\\"\\\" displayname=\\\"LPR camera\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\"><iteminfo lastknowncameradisplayname=\\\"LPR camera\\\" cameraid=\\\"16482501-1319-440f-967b-0fc076ba7667\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" ipixsplitmode=\\\"0\\\" keepimagequalitywhenmaximized=\\\"False\\\" maintainimageaspectratio=\\\"True\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" /><properties /></viewitem><viewitem id=\\\"e1473120-02ed-449f-bda6-9497568ce546\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"69199daa-86a7-4635-bc6f-cbc51fe558c6\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"546ba8b8-9482-44e4-abcc-b1d0dc14c155\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"ec210df8-c22a-434e-86e2-b725e76559df\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"95a39cf2-f405-4f67-8a55-72b0c0f5f38a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a68489af-6a9f-46e2-8634-05e1f41e111d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"7d66ee08-dba7-4517-b2b5-f9209d9b24c4\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"198cfe1d-7431-49e0-92ec-c1e86b56a007\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"c697cc7c-a9be-4de8-a921-02e7d7eb2d35\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"b9afb702-ac3d-4e2a-9eed-670db1163c43\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"711bcf13-b31b-42be-8079-f53c3ca278de\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2fbd75f7-7a1a-4bd0-a670-b13d9a8a9773\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"1442394e-9d1e-49d6-b00c-5bae1612ba5a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"928d5bdd-65c2-4d36-9970-34798bcaca4b\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"78ad23d0-81ca-4ebb-90d0-a0769b4684c1\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a662932e-0ee5-4c39-93f0-eb19f481cbad\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"8ee8af16-6408-4319-bb29-6999e7b8c588\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2004163d-5499-47b7-a0e0-873d1e16c92d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"820ebb51-3112-42d5-9ef8-9902052b0cab\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"07010b7c-758e-4ac0-9f01-0451429700d5\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"27dc28f4-e89e-44c2-a7cc-d4b08cf0c727\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"72131cb8-4e56-459c-863f-549bb17dad07\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"0086d81b-1e3c-4cc5-8c24-86f32768dd0a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"f55568ff-7158-418a-a56e-80e437cdf875\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem></viewitems><properties><property value=\\\"<ViewLayout><Icon>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</Icon><ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem></ViewItems></ViewLayout>\\\" name=\\\"LayoutPropperty\\\" /></properties></view>",
- "displayName": "Night",
- "id": "23b6c495-5fbd-4f4e-9a44-23d3e55f7adc",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Night",
- "relations": {
- "self": {
- "type": "monitorPresets",
- "id": "23b6c495-5fbd-4f4e-9a44-23d3e55f7adc"
}, - "parent": {
- "type": "monitors",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f"
}
}
}
], - "monitorSize": 20,
- "monitorState": "string",
- "name": "Front desk monitor",
- "noLayout": "Preserve",
- "view": {
- "type": "views",
- "id": "01c5dada-2530-439c-9a2f-08af5dd45813"
}, - "relations": {
- "self": {
- "type": "monitors",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f"
}, - "parent": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Update all fields on Monitor
id required | string <guid> Example: ba113936-9a15-4be5-84b6-29a9d0e3cd3f Id of the object |
aspectRatio | string Enum: "Aspect16x9" "Aspect4x3" Aspect ratio.
Value map to display names:
Aspect16x9=Aspect16x9 |
description | string Description |
emptyViewItems | string Enum: "Preserve" "Clear" Empty preset item. What to show in an empty preset layout item.
Value map to display names:
Preserve=Preserve |
insertionMethod | string Enum: "Linked" "Independent" Element insertion.
Value map to display names:
Linked=Linked |
locationX | number <double> Location X coordinate. X coordinate of monitor upper left corner |
locationY | number <double> Location Y coordinate. Y coordinate of monitor upper left corner |
monitorSize | number <double> Size. Size of monitor in inches |
name | string Name |
noLayout | string Enum: "Preserve" "Clear" Empty preset. What to show in an empty preset layout.
Value map to display names:
Preserve=Preserve |
object (path_views) Underlying view. The view containing the contents of this videowall monitor | |
object |
{- "aspectRatio": "Aspect4x3",
- "description": "Monitor may have a long description",
- "emptyViewItems": "Preserve",
- "insertionMethod": "Linked",
- "locationX": 0,
- "locationY": 0,
- "monitorSize": 20,
- "name": "Front desk monitor",
- "noLayout": "Preserve",
- "view": {
- "type": "views",
- "id": "01c5dada-2530-439c-9a2f-08af5dd45813"
}, - "relations": {
- "self": {
- "type": "monitors",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f"
}, - "parent": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
{- "data": {
- "aspectRatio": "Aspect4x3",
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Monitor may have a long description",
- "displayName": "Front desk monitor",
- "emptyViewItems": "Preserve",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f",
- "insertionMethod": "Linked",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "locationX": 0,
- "locationY": 0,
- "monitorPresets": [
- {
- "definitionXml": "<view viewlayouttype=\\\"VideoOS.RemoteClient.Application.Data.ViewLayouts.ViewLayout5x5, VideoOS.RemoteClient.Application\\\" shortcut=\\\"\\\" displayname=\\\"Night\\\" id=\\\"f1e9dcfd-7353-4d26-9475-22800c41d796\\\"><viewitems><viewitem id=\\\"d1001d9e-2b18-46b0-a94e-e354cd50a26c\\\" shortcut=\\\"\\\" displayname=\\\"LPR camera\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\"><iteminfo lastknowncameradisplayname=\\\"LPR camera\\\" cameraid=\\\"16482501-1319-440f-967b-0fc076ba7667\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" ipixsplitmode=\\\"0\\\" keepimagequalitywhenmaximized=\\\"False\\\" maintainimageaspectratio=\\\"True\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" /><properties /></viewitem><viewitem id=\\\"e1473120-02ed-449f-bda6-9497568ce546\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"69199daa-86a7-4635-bc6f-cbc51fe558c6\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"546ba8b8-9482-44e4-abcc-b1d0dc14c155\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"ec210df8-c22a-434e-86e2-b725e76559df\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"95a39cf2-f405-4f67-8a55-72b0c0f5f38a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a68489af-6a9f-46e2-8634-05e1f41e111d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"7d66ee08-dba7-4517-b2b5-f9209d9b24c4\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"198cfe1d-7431-49e0-92ec-c1e86b56a007\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"c697cc7c-a9be-4de8-a921-02e7d7eb2d35\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"b9afb702-ac3d-4e2a-9eed-670db1163c43\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"711bcf13-b31b-42be-8079-f53c3ca278de\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2fbd75f7-7a1a-4bd0-a670-b13d9a8a9773\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"1442394e-9d1e-49d6-b00c-5bae1612ba5a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"928d5bdd-65c2-4d36-9970-34798bcaca4b\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"78ad23d0-81ca-4ebb-90d0-a0769b4684c1\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a662932e-0ee5-4c39-93f0-eb19f481cbad\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"8ee8af16-6408-4319-bb29-6999e7b8c588\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2004163d-5499-47b7-a0e0-873d1e16c92d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"820ebb51-3112-42d5-9ef8-9902052b0cab\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"07010b7c-758e-4ac0-9f01-0451429700d5\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"27dc28f4-e89e-44c2-a7cc-d4b08cf0c727\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"72131cb8-4e56-459c-863f-549bb17dad07\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"0086d81b-1e3c-4cc5-8c24-86f32768dd0a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"f55568ff-7158-418a-a56e-80e437cdf875\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem></viewitems><properties><property value=\\\"<ViewLayout><Icon>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</Icon><ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem></ViewItems></ViewLayout>\\\" name=\\\"LayoutPropperty\\\" /></properties></view>",
- "displayName": "Night",
- "id": "23b6c495-5fbd-4f4e-9a44-23d3e55f7adc",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Night",
- "relations": {
- "self": {
- "type": "monitorPresets",
- "id": "23b6c495-5fbd-4f4e-9a44-23d3e55f7adc"
}, - "parent": {
- "type": "monitors",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f"
}
}
}
], - "monitorSize": 20,
- "monitorState": "string",
- "name": "Front desk monitor",
- "noLayout": "Preserve",
- "view": {
- "type": "views",
- "id": "01c5dada-2530-439c-9a2f-08af5dd45813"
}, - "relations": {
- "self": {
- "type": "monitors",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f"
}, - "parent": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
}
Update provided fields on Monitor
id required | string <guid> Example: ba113936-9a15-4be5-84b6-29a9d0e3cd3f Id of the object |
aspectRatio | string Enum: "Aspect16x9" "Aspect4x3" Aspect ratio.
Value map to display names:
Aspect16x9=Aspect16x9 |
description | string Description |
emptyViewItems | string Enum: "Preserve" "Clear" Empty preset item. What to show in an empty preset layout item.
Value map to display names:
Preserve=Preserve |
insertionMethod | string Enum: "Linked" "Independent" Element insertion.
Value map to display names:
Linked=Linked |
locationX | number <double> Location X coordinate. X coordinate of monitor upper left corner |
locationY | number <double> Location Y coordinate. Y coordinate of monitor upper left corner |
monitorSize | number <double> Size. Size of monitor in inches |
name | string Name |
noLayout | string Enum: "Preserve" "Clear" Empty preset. What to show in an empty preset layout.
Value map to display names:
Preserve=Preserve |
object (path_views) Underlying view. The view containing the contents of this videowall monitor | |
object |
{- "aspectRatio": "Aspect4x3",
- "description": "Monitor may have a long description",
- "emptyViewItems": "Preserve",
- "insertionMethod": "Linked",
- "locationX": 0,
- "locationY": 0,
- "monitorSize": 20,
- "name": "Front desk monitor",
- "noLayout": "Preserve",
- "view": {
- "type": "views",
- "id": "01c5dada-2530-439c-9a2f-08af5dd45813"
}, - "relations": {
- "self": {
- "type": "monitors",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f"
}, - "parent": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
{- "data": {
- "aspectRatio": "Aspect4x3",
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Monitor may have a long description",
- "displayName": "Front desk monitor",
- "emptyViewItems": "Preserve",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f",
- "insertionMethod": "Linked",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "locationX": 0,
- "locationY": 0,
- "monitorPresets": [
- {
- "definitionXml": "<view viewlayouttype=\\\"VideoOS.RemoteClient.Application.Data.ViewLayouts.ViewLayout5x5, VideoOS.RemoteClient.Application\\\" shortcut=\\\"\\\" displayname=\\\"Night\\\" id=\\\"f1e9dcfd-7353-4d26-9475-22800c41d796\\\"><viewitems><viewitem id=\\\"d1001d9e-2b18-46b0-a94e-e354cd50a26c\\\" shortcut=\\\"\\\" displayname=\\\"LPR camera\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\"><iteminfo lastknowncameradisplayname=\\\"LPR camera\\\" cameraid=\\\"16482501-1319-440f-967b-0fc076ba7667\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" ipixsplitmode=\\\"0\\\" keepimagequalitywhenmaximized=\\\"False\\\" maintainimageaspectratio=\\\"True\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" /><properties /></viewitem><viewitem id=\\\"e1473120-02ed-449f-bda6-9497568ce546\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"69199daa-86a7-4635-bc6f-cbc51fe558c6\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"546ba8b8-9482-44e4-abcc-b1d0dc14c155\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"ec210df8-c22a-434e-86e2-b725e76559df\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"95a39cf2-f405-4f67-8a55-72b0c0f5f38a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a68489af-6a9f-46e2-8634-05e1f41e111d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"7d66ee08-dba7-4517-b2b5-f9209d9b24c4\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"198cfe1d-7431-49e0-92ec-c1e86b56a007\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"c697cc7c-a9be-4de8-a921-02e7d7eb2d35\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"b9afb702-ac3d-4e2a-9eed-670db1163c43\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"711bcf13-b31b-42be-8079-f53c3ca278de\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2fbd75f7-7a1a-4bd0-a670-b13d9a8a9773\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"1442394e-9d1e-49d6-b00c-5bae1612ba5a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"928d5bdd-65c2-4d36-9970-34798bcaca4b\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"78ad23d0-81ca-4ebb-90d0-a0769b4684c1\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a662932e-0ee5-4c39-93f0-eb19f481cbad\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"8ee8af16-6408-4319-bb29-6999e7b8c588\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2004163d-5499-47b7-a0e0-873d1e16c92d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"820ebb51-3112-42d5-9ef8-9902052b0cab\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"07010b7c-758e-4ac0-9f01-0451429700d5\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"27dc28f4-e89e-44c2-a7cc-d4b08cf0c727\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"72131cb8-4e56-459c-863f-549bb17dad07\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"0086d81b-1e3c-4cc5-8c24-86f32768dd0a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"f55568ff-7158-418a-a56e-80e437cdf875\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem></viewitems><properties><property value=\\\"<ViewLayout><Icon>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</Icon><ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem></ViewItems></ViewLayout>\\\" name=\\\"LayoutPropperty\\\" /></properties></view>",
- "displayName": "Night",
- "id": "23b6c495-5fbd-4f4e-9a44-23d3e55f7adc",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Night",
- "relations": {
- "self": {
- "type": "monitorPresets",
- "id": "23b6c495-5fbd-4f4e-9a44-23d3e55f7adc"
}, - "parent": {
- "type": "monitors",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f"
}
}
}
], - "monitorSize": 20,
- "monitorState": "string",
- "name": "Front desk monitor",
- "noLayout": "Preserve",
- "view": {
- "type": "views",
- "id": "01c5dada-2530-439c-9a2f-08af5dd45813"
}, - "relations": {
- "self": {
- "type": "monitors",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f"
}, - "parent": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
}
Perform a task
id required | string <guid> Example: ba113936-9a15-4be5-84b6-29a9d0e3cd3f Id of the object |
task required | string Example: task=ApplyTextAndLayout task=ApplyCameras, or task=ApplyCamerasAndLayout, or task=RemoveCameras, or task=ApplyViewItemsXml, or task=ApplyMonitorState, or task=ApplyLayout, or task=ApplyTextAndLayout ApplyCameras - Apply cameras ApplyCamerasAndLayout - Apply cameras and layout RemoveCameras - Remove cameras ApplyViewItemsXml - Apply view items XML ApplyMonitorState - Apply monitor state. Use this to control whether the given monitor should be in live or playback state. For the latter the playback mode and timestamp can also be specified. ApplyLayout - Apply layout ApplyTextAndLayout - Apply text and layout |
beginPosition | integer Insert from position. Index in view to insert from |
cameraGroupPaths | string Camera group paths. Paths of camera groups to insert in view |
cameraPaths | string Camera paths. Paths of cameras to insert in view |
{- "beginPosition": 0,
- "cameraGroupPaths": "string",
- "cameraPaths": "string"
}
{- "result": {
- "beginPosition": 1,
- "cameraGroupPaths": "string",
- "cameraPaths": "string",
- "displayName": "Front desk monitor"
}
}
Get array of all monitorPresets
id required | string <guid> Example: ba113936-9a15-4be5-84b6-29a9d0e3cd3f Id of the monitor object |
{- "array": [
- {
- "definitionXml": "<view viewlayouttype=\\\"VideoOS.RemoteClient.Application.Data.ViewLayouts.ViewLayout5x5, VideoOS.RemoteClient.Application\\\" shortcut=\\\"\\\" displayname=\\\"Night\\\" id=\\\"f1e9dcfd-7353-4d26-9475-22800c41d796\\\"><viewitems><viewitem id=\\\"d1001d9e-2b18-46b0-a94e-e354cd50a26c\\\" shortcut=\\\"\\\" displayname=\\\"LPR camera\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\"><iteminfo lastknowncameradisplayname=\\\"LPR camera\\\" cameraid=\\\"16482501-1319-440f-967b-0fc076ba7667\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" ipixsplitmode=\\\"0\\\" keepimagequalitywhenmaximized=\\\"False\\\" maintainimageaspectratio=\\\"True\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" /><properties /></viewitem><viewitem id=\\\"e1473120-02ed-449f-bda6-9497568ce546\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"69199daa-86a7-4635-bc6f-cbc51fe558c6\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"546ba8b8-9482-44e4-abcc-b1d0dc14c155\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"ec210df8-c22a-434e-86e2-b725e76559df\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"95a39cf2-f405-4f67-8a55-72b0c0f5f38a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a68489af-6a9f-46e2-8634-05e1f41e111d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"7d66ee08-dba7-4517-b2b5-f9209d9b24c4\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"198cfe1d-7431-49e0-92ec-c1e86b56a007\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"c697cc7c-a9be-4de8-a921-02e7d7eb2d35\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"b9afb702-ac3d-4e2a-9eed-670db1163c43\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"711bcf13-b31b-42be-8079-f53c3ca278de\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2fbd75f7-7a1a-4bd0-a670-b13d9a8a9773\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"1442394e-9d1e-49d6-b00c-5bae1612ba5a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"928d5bdd-65c2-4d36-9970-34798bcaca4b\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"78ad23d0-81ca-4ebb-90d0-a0769b4684c1\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a662932e-0ee5-4c39-93f0-eb19f481cbad\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"8ee8af16-6408-4319-bb29-6999e7b8c588\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2004163d-5499-47b7-a0e0-873d1e16c92d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"820ebb51-3112-42d5-9ef8-9902052b0cab\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"07010b7c-758e-4ac0-9f01-0451429700d5\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"27dc28f4-e89e-44c2-a7cc-d4b08cf0c727\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"72131cb8-4e56-459c-863f-549bb17dad07\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"0086d81b-1e3c-4cc5-8c24-86f32768dd0a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"f55568ff-7158-418a-a56e-80e437cdf875\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem></viewitems><properties><property value=\\\"<ViewLayout><Icon>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</Icon><ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem></ViewItems></ViewLayout>\\\" name=\\\"LayoutPropperty\\\" /></properties></view>",
- "displayName": "Night",
- "id": "23b6c495-5fbd-4f4e-9a44-23d3e55f7adc",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Night",
- "relations": {
- "self": {
- "type": "monitorPresets",
- "id": "23b6c495-5fbd-4f4e-9a44-23d3e55f7adc"
}, - "parent": {
- "type": "monitors",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f"
}
}
}
]
}
Get specific monitorPresets
idParent required | string <guid> Example: ba113936-9a15-4be5-84b6-29a9d0e3cd3f Id of the monitor object |
id required | string <guid> Example: ba113936-9a15-4be5-84b6-29a9d0e3cd3f Id of the monitorPreset object |
{- "array": [
- {
- "definitionXml": "<view viewlayouttype=\\\"VideoOS.RemoteClient.Application.Data.ViewLayouts.ViewLayout5x5, VideoOS.RemoteClient.Application\\\" shortcut=\\\"\\\" displayname=\\\"Night\\\" id=\\\"f1e9dcfd-7353-4d26-9475-22800c41d796\\\"><viewitems><viewitem id=\\\"d1001d9e-2b18-46b0-a94e-e354cd50a26c\\\" shortcut=\\\"\\\" displayname=\\\"LPR camera\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\"><iteminfo lastknowncameradisplayname=\\\"LPR camera\\\" cameraid=\\\"16482501-1319-440f-967b-0fc076ba7667\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" ipixsplitmode=\\\"0\\\" keepimagequalitywhenmaximized=\\\"False\\\" maintainimageaspectratio=\\\"True\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" /><properties /></viewitem><viewitem id=\\\"e1473120-02ed-449f-bda6-9497568ce546\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"69199daa-86a7-4635-bc6f-cbc51fe558c6\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"546ba8b8-9482-44e4-abcc-b1d0dc14c155\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"ec210df8-c22a-434e-86e2-b725e76559df\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"95a39cf2-f405-4f67-8a55-72b0c0f5f38a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a68489af-6a9f-46e2-8634-05e1f41e111d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"7d66ee08-dba7-4517-b2b5-f9209d9b24c4\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"198cfe1d-7431-49e0-92ec-c1e86b56a007\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"c697cc7c-a9be-4de8-a921-02e7d7eb2d35\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"b9afb702-ac3d-4e2a-9eed-670db1163c43\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"711bcf13-b31b-42be-8079-f53c3ca278de\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2fbd75f7-7a1a-4bd0-a670-b13d9a8a9773\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"1442394e-9d1e-49d6-b00c-5bae1612ba5a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"928d5bdd-65c2-4d36-9970-34798bcaca4b\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"78ad23d0-81ca-4ebb-90d0-a0769b4684c1\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a662932e-0ee5-4c39-93f0-eb19f481cbad\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"8ee8af16-6408-4319-bb29-6999e7b8c588\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2004163d-5499-47b7-a0e0-873d1e16c92d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"820ebb51-3112-42d5-9ef8-9902052b0cab\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"07010b7c-758e-4ac0-9f01-0451429700d5\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"27dc28f4-e89e-44c2-a7cc-d4b08cf0c727\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"72131cb8-4e56-459c-863f-549bb17dad07\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"0086d81b-1e3c-4cc5-8c24-86f32768dd0a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"f55568ff-7158-418a-a56e-80e437cdf875\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem></viewitems><properties><property value=\\\"<ViewLayout><Icon>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</Icon><ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem></ViewItems></ViewLayout>\\\" name=\\\"LayoutPropperty\\\" /></properties></view>",
- "displayName": "Night",
- "id": "23b6c495-5fbd-4f4e-9a44-23d3e55f7adc",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Night",
- "relations": {
- "self": {
- "type": "monitorPresets",
- "id": "23b6c495-5fbd-4f4e-9a44-23d3e55f7adc"
}, - "parent": {
- "type": "monitors",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f"
}
}
}
]
}
{- "array": [
- {
- "availability": "Public",
- "description": "SaveSearches may have a long description",
- "displayName": "MySaveSearch",
- "id": "6815cc27-524e-4664-8d1c-28041e28a4d4",
- "includesScopeItems": false,
- "name": "MySaveSearch",
- "searchQuery": "searchQuery",
- "relations": {
- "self": {
- "type": "saveSearches",
- "id": "6815cc27-524e-4664-8d1c-28041e28a4d4"
}
}
}
]
}
Add new saveSearches, or perform a task
availability | string Enum: "Private" "Public" Availability.
Value map to display names:
Private=Private |
description | string Description |
includesScopeItems | boolean Devices are included in the search query |
name | string Name |
searchQuery | string Search query |
object |
{- "availability": "Public",
- "description": "SaveSearches may have a long description",
- "includesScopeItems": false,
- "name": "MySaveSearch",
- "searchQuery": "searchQuery",
- "relations": {
- "self": {
- "type": "saveSearches",
- "id": "6815cc27-524e-4664-8d1c-28041e28a4d4"
}
}
}
{- "result": {
- "availability": "Public",
- "description": "SaveSearchesFolder may have a long description",
- "displayName": "Save searches",
- "id": "abf39fca-d44d-4a47-b7c3-6266bcb4418a",
- "includesScopeItems": false,
- "name": "string",
- "searchQuery": "string"
}
}
Get specific object of saveSearches
id required | string <guid> Example: 6815cc27-524e-4664-8d1c-28041e28a4d4 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "availability": "Public",
- "description": "SaveSearches may have a long description",
- "displayName": "MySaveSearch",
- "id": "6815cc27-524e-4664-8d1c-28041e28a4d4",
- "includesScopeItems": false,
- "name": "MySaveSearch",
- "searchQuery": "searchQuery",
- "relations": {
- "self": {
- "type": "saveSearches",
- "id": "6815cc27-524e-4664-8d1c-28041e28a4d4"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Update all fields on saveSearches
id required | string <guid> Example: 6815cc27-524e-4664-8d1c-28041e28a4d4 Id of the object |
availability | string Enum: "Private" "Public" Availability.
Value map to display names:
Private=Private |
description | string Description |
includesScopeItems | boolean Devices are included in the search query |
name | string Name |
searchQuery | string Search query |
object |
{- "availability": "Public",
- "description": "SaveSearches may have a long description",
- "includesScopeItems": false,
- "name": "MySaveSearch",
- "searchQuery": "searchQuery",
- "relations": {
- "self": {
- "type": "saveSearches",
- "id": "6815cc27-524e-4664-8d1c-28041e28a4d4"
}
}
}
{- "data": {
- "availability": "Public",
- "description": "SaveSearches may have a long description",
- "displayName": "MySaveSearch",
- "id": "6815cc27-524e-4664-8d1c-28041e28a4d4",
- "includesScopeItems": false,
- "name": "MySaveSearch",
- "searchQuery": "searchQuery",
- "relations": {
- "self": {
- "type": "saveSearches",
- "id": "6815cc27-524e-4664-8d1c-28041e28a4d4"
}
}
}
}
Update provided fields on saveSearches
id required | string <guid> Example: 6815cc27-524e-4664-8d1c-28041e28a4d4 Id of the object |
availability | string Enum: "Private" "Public" Availability.
Value map to display names:
Private=Private |
description | string Description |
includesScopeItems | boolean Devices are included in the search query |
name | string Name |
searchQuery | string Search query |
object |
{- "availability": "Public",
- "description": "SaveSearches may have a long description",
- "includesScopeItems": false,
- "name": "MySaveSearch",
- "searchQuery": "searchQuery",
- "relations": {
- "self": {
- "type": "saveSearches",
- "id": "6815cc27-524e-4664-8d1c-28041e28a4d4"
}
}
}
{- "data": {
- "availability": "Public",
- "description": "SaveSearches may have a long description",
- "displayName": "MySaveSearch",
- "id": "6815cc27-524e-4664-8d1c-28041e28a4d4",
- "includesScopeItems": false,
- "name": "MySaveSearch",
- "searchQuery": "searchQuery",
- "relations": {
- "self": {
- "type": "saveSearches",
- "id": "6815cc27-524e-4664-8d1c-28041e28a4d4"
}
}
}
}
{- "array": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "VideoWall may have a long description",
- "displayName": "My wall",
- "height": 200,
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "monitors": [
- {
- "aspectRatio": "Aspect4x3",
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Monitor may have a long description",
- "displayName": "Front desk monitor",
- "emptyViewItems": "Preserve",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f",
- "insertionMethod": "Linked",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "locationX": 0,
- "locationY": 0,
- "monitorPresets": [
- {
- "definitionXml": "<view viewlayouttype=\\\"VideoOS.RemoteClient.Application.Data.ViewLayouts.ViewLayout5x5, VideoOS.RemoteClient.Application\\\" shortcut=\\\"\\\" displayname=\\\"Night\\\" id=\\\"f1e9dcfd-7353-4d26-9475-22800c41d796\\\"><viewitems><viewitem id=\\\"d1001d9e-2b18-46b0-a94e-e354cd50a26c\\\" shortcut=\\\"\\\" displayname=\\\"LPR camera\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\"><iteminfo lastknowncameradisplayname=\\\"LPR camera\\\" cameraid=\\\"16482501-1319-440f-967b-0fc076ba7667\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" ipixsplitmode=\\\"0\\\" keepimagequalitywhenmaximized=\\\"False\\\" maintainimageaspectratio=\\\"True\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" /><properties /></viewitem><viewitem id=\\\"e1473120-02ed-449f-bda6-9497568ce546\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"69199daa-86a7-4635-bc6f-cbc51fe558c6\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"546ba8b8-9482-44e4-abcc-b1d0dc14c155\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"ec210df8-c22a-434e-86e2-b725e76559df\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"95a39cf2-f405-4f67-8a55-72b0c0f5f38a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a68489af-6a9f-46e2-8634-05e1f41e111d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"7d66ee08-dba7-4517-b2b5-f9209d9b24c4\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"198cfe1d-7431-49e0-92ec-c1e86b56a007\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"c697cc7c-a9be-4de8-a921-02e7d7eb2d35\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"b9afb702-ac3d-4e2a-9eed-670db1163c43\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"711bcf13-b31b-42be-8079-f53c3ca278de\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2fbd75f7-7a1a-4bd0-a670-b13d9a8a9773\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"1442394e-9d1e-49d6-b00c-5bae1612ba5a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"928d5bdd-65c2-4d36-9970-34798bcaca4b\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"78ad23d0-81ca-4ebb-90d0-a0769b4684c1\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a662932e-0ee5-4c39-93f0-eb19f481cbad\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"8ee8af16-6408-4319-bb29-6999e7b8c588\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2004163d-5499-47b7-a0e0-873d1e16c92d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"820ebb51-3112-42d5-9ef8-9902052b0cab\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"07010b7c-758e-4ac0-9f01-0451429700d5\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"27dc28f4-e89e-44c2-a7cc-d4b08cf0c727\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"72131cb8-4e56-459c-863f-549bb17dad07\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"0086d81b-1e3c-4cc5-8c24-86f32768dd0a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"f55568ff-7158-418a-a56e-80e437cdf875\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem></viewitems><properties><property value=\\\"<ViewLayout><Icon>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</Icon><ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem></ViewItems></ViewLayout>\\\" name=\\\"LayoutPropperty\\\" /></properties></view>",
- "displayName": "Night",
- "id": "23b6c495-5fbd-4f4e-9a44-23d3e55f7adc",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Night",
- "relations": {
- "self": {
- "type": "monitorPresets",
- "id": "23b6c495-5fbd-4f4e-9a44-23d3e55f7adc"
}, - "parent": {
- "type": "monitors",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f"
}
}
}
], - "monitorSize": 20,
- "monitorState": "string",
- "name": "Front desk monitor",
- "noLayout": "Preserve",
- "view": {
- "type": "views",
- "id": "01c5dada-2530-439c-9a2f-08af5dd45813"
}, - "relations": {
- "self": {
- "type": "monitors",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f"
}, - "parent": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
], - "name": "My wall",
- "statusText": true,
- "titleBar": "None",
- "videoWallPresets": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "VideoWallPreset may have a long description",
- "displayName": "Night",
- "id": "3cc421f4-f20e-4254-a472-425ded951bc4",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Night",
- "relations": {
- "self": {
- "type": "videoWallPresets",
- "id": "3cc421f4-f20e-4254-a472-425ded951bc4"
}, - "parent": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
], - "width": 200,
- "relations": {
- "self": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
]
}
Video wall
description | string Description |
name | string Name |
statusText | boolean Status text. Is status text shown |
titleBar | string Enum: "None" "Caption" Title bar. What to show in the title bar.
Value map to display names:
None=None |
object |
{- "description": "VideoWall may have a long description",
- "name": "My wall",
- "statusText": true,
- "titleBar": "None",
- "relations": {
- "self": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
{- "result": {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "VideoWall may have a long description",
- "displayName": "My wall",
- "height": 200,
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "monitors": [
- {
- "aspectRatio": "Aspect4x3",
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Monitor may have a long description",
- "displayName": "Front desk monitor",
- "emptyViewItems": "Preserve",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f",
- "insertionMethod": "Linked",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "locationX": 0,
- "locationY": 0,
- "monitorPresets": [
- {
- "definitionXml": "<view viewlayouttype=\\\"VideoOS.RemoteClient.Application.Data.ViewLayouts.ViewLayout5x5, VideoOS.RemoteClient.Application\\\" shortcut=\\\"\\\" displayname=\\\"Night\\\" id=\\\"f1e9dcfd-7353-4d26-9475-22800c41d796\\\"><viewitems><viewitem id=\\\"d1001d9e-2b18-46b0-a94e-e354cd50a26c\\\" shortcut=\\\"\\\" displayname=\\\"LPR camera\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\"><iteminfo lastknowncameradisplayname=\\\"LPR camera\\\" cameraid=\\\"16482501-1319-440f-967b-0fc076ba7667\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" ipixsplitmode=\\\"0\\\" keepimagequalitywhenmaximized=\\\"False\\\" maintainimageaspectratio=\\\"True\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" /><properties /></viewitem><viewitem id=\\\"e1473120-02ed-449f-bda6-9497568ce546\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"69199daa-86a7-4635-bc6f-cbc51fe558c6\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"546ba8b8-9482-44e4-abcc-b1d0dc14c155\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"ec210df8-c22a-434e-86e2-b725e76559df\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"95a39cf2-f405-4f67-8a55-72b0c0f5f38a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a68489af-6a9f-46e2-8634-05e1f41e111d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"7d66ee08-dba7-4517-b2b5-f9209d9b24c4\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"198cfe1d-7431-49e0-92ec-c1e86b56a007\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"c697cc7c-a9be-4de8-a921-02e7d7eb2d35\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"b9afb702-ac3d-4e2a-9eed-670db1163c43\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"711bcf13-b31b-42be-8079-f53c3ca278de\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2fbd75f7-7a1a-4bd0-a670-b13d9a8a9773\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"1442394e-9d1e-49d6-b00c-5bae1612ba5a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"928d5bdd-65c2-4d36-9970-34798bcaca4b\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"78ad23d0-81ca-4ebb-90d0-a0769b4684c1\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a662932e-0ee5-4c39-93f0-eb19f481cbad\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"8ee8af16-6408-4319-bb29-6999e7b8c588\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2004163d-5499-47b7-a0e0-873d1e16c92d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"820ebb51-3112-42d5-9ef8-9902052b0cab\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"07010b7c-758e-4ac0-9f01-0451429700d5\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"27dc28f4-e89e-44c2-a7cc-d4b08cf0c727\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"72131cb8-4e56-459c-863f-549bb17dad07\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"0086d81b-1e3c-4cc5-8c24-86f32768dd0a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"f55568ff-7158-418a-a56e-80e437cdf875\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem></viewitems><properties><property value=\\\"<ViewLayout><Icon>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</Icon><ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem></ViewItems></ViewLayout>\\\" name=\\\"LayoutPropperty\\\" /></properties></view>",
- "displayName": "Night",
- "id": "23b6c495-5fbd-4f4e-9a44-23d3e55f7adc",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Night",
- "relations": {
- "self": {
- "type": "monitorPresets",
- "id": "23b6c495-5fbd-4f4e-9a44-23d3e55f7adc"
}, - "parent": {
- "type": "monitors",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f"
}
}
}
], - "monitorSize": 20,
- "monitorState": "string",
- "name": "Front desk monitor",
- "noLayout": "Preserve",
- "view": {
- "type": "views",
- "id": "01c5dada-2530-439c-9a2f-08af5dd45813"
}, - "relations": {
- "self": {
- "type": "monitors",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f"
}, - "parent": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
], - "name": "My wall",
- "statusText": true,
- "titleBar": "None",
- "videoWallPresets": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "VideoWallPreset may have a long description",
- "displayName": "Night",
- "id": "3cc421f4-f20e-4254-a472-425ded951bc4",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Night",
- "relations": {
- "self": {
- "type": "videoWallPresets",
- "id": "3cc421f4-f20e-4254-a472-425ded951bc4"
}, - "parent": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
], - "width": 200,
- "relations": {
- "self": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
}
Video wall
id required | string <guid> Example: 1da906e6-9599-4f39-b63a-e1a597649ae7 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "VideoWall may have a long description",
- "displayName": "My wall",
- "height": 200,
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "monitors": [
- {
- "aspectRatio": "Aspect4x3",
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Monitor may have a long description",
- "displayName": "Front desk monitor",
- "emptyViewItems": "Preserve",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f",
- "insertionMethod": "Linked",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "locationX": 0,
- "locationY": 0,
- "monitorPresets": [
- {
- "definitionXml": "<view viewlayouttype=\\\"VideoOS.RemoteClient.Application.Data.ViewLayouts.ViewLayout5x5, VideoOS.RemoteClient.Application\\\" shortcut=\\\"\\\" displayname=\\\"Night\\\" id=\\\"f1e9dcfd-7353-4d26-9475-22800c41d796\\\"><viewitems><viewitem id=\\\"d1001d9e-2b18-46b0-a94e-e354cd50a26c\\\" shortcut=\\\"\\\" displayname=\\\"LPR camera\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\"><iteminfo lastknowncameradisplayname=\\\"LPR camera\\\" cameraid=\\\"16482501-1319-440f-967b-0fc076ba7667\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" ipixsplitmode=\\\"0\\\" keepimagequalitywhenmaximized=\\\"False\\\" maintainimageaspectratio=\\\"True\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" /><properties /></viewitem><viewitem id=\\\"e1473120-02ed-449f-bda6-9497568ce546\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"69199daa-86a7-4635-bc6f-cbc51fe558c6\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"546ba8b8-9482-44e4-abcc-b1d0dc14c155\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"ec210df8-c22a-434e-86e2-b725e76559df\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"95a39cf2-f405-4f67-8a55-72b0c0f5f38a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a68489af-6a9f-46e2-8634-05e1f41e111d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"7d66ee08-dba7-4517-b2b5-f9209d9b24c4\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"198cfe1d-7431-49e0-92ec-c1e86b56a007\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"c697cc7c-a9be-4de8-a921-02e7d7eb2d35\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"b9afb702-ac3d-4e2a-9eed-670db1163c43\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"711bcf13-b31b-42be-8079-f53c3ca278de\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2fbd75f7-7a1a-4bd0-a670-b13d9a8a9773\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"1442394e-9d1e-49d6-b00c-5bae1612ba5a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"928d5bdd-65c2-4d36-9970-34798bcaca4b\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"78ad23d0-81ca-4ebb-90d0-a0769b4684c1\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a662932e-0ee5-4c39-93f0-eb19f481cbad\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"8ee8af16-6408-4319-bb29-6999e7b8c588\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2004163d-5499-47b7-a0e0-873d1e16c92d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"820ebb51-3112-42d5-9ef8-9902052b0cab\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"07010b7c-758e-4ac0-9f01-0451429700d5\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"27dc28f4-e89e-44c2-a7cc-d4b08cf0c727\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"72131cb8-4e56-459c-863f-549bb17dad07\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"0086d81b-1e3c-4cc5-8c24-86f32768dd0a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"f55568ff-7158-418a-a56e-80e437cdf875\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem></viewitems><properties><property value=\\\"<ViewLayout><Icon>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</Icon><ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem></ViewItems></ViewLayout>\\\" name=\\\"LayoutPropperty\\\" /></properties></view>",
- "displayName": "Night",
- "id": "23b6c495-5fbd-4f4e-9a44-23d3e55f7adc",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Night",
- "relations": {
- "self": {
- "type": "monitorPresets",
- "id": "23b6c495-5fbd-4f4e-9a44-23d3e55f7adc"
}, - "parent": {
- "type": "monitors",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f"
}
}
}
], - "monitorSize": 20,
- "monitorState": "string",
- "name": "Front desk monitor",
- "noLayout": "Preserve",
- "view": {
- "type": "views",
- "id": "01c5dada-2530-439c-9a2f-08af5dd45813"
}, - "relations": {
- "self": {
- "type": "monitors",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f"
}, - "parent": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
], - "name": "My wall",
- "statusText": true,
- "titleBar": "None",
- "videoWallPresets": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "VideoWallPreset may have a long description",
- "displayName": "Night",
- "id": "3cc421f4-f20e-4254-a472-425ded951bc4",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Night",
- "relations": {
- "self": {
- "type": "videoWallPresets",
- "id": "3cc421f4-f20e-4254-a472-425ded951bc4"
}, - "parent": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
], - "width": 200,
- "relations": {
- "self": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Video wall
id required | string <guid> Example: 1da906e6-9599-4f39-b63a-e1a597649ae7 Id of the object |
description | string Description |
name | string Name |
statusText | boolean Status text. Is status text shown |
titleBar | string Enum: "None" "Caption" Title bar. What to show in the title bar.
Value map to display names:
None=None |
object |
{- "description": "VideoWall may have a long description",
- "name": "My wall",
- "statusText": true,
- "titleBar": "None",
- "relations": {
- "self": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
{- "data": {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "VideoWall may have a long description",
- "displayName": "My wall",
- "height": 200,
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "monitors": [
- {
- "aspectRatio": "Aspect4x3",
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Monitor may have a long description",
- "displayName": "Front desk monitor",
- "emptyViewItems": "Preserve",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f",
- "insertionMethod": "Linked",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "locationX": 0,
- "locationY": 0,
- "monitorPresets": [
- {
- "definitionXml": "<view viewlayouttype=\\\"VideoOS.RemoteClient.Application.Data.ViewLayouts.ViewLayout5x5, VideoOS.RemoteClient.Application\\\" shortcut=\\\"\\\" displayname=\\\"Night\\\" id=\\\"f1e9dcfd-7353-4d26-9475-22800c41d796\\\"><viewitems><viewitem id=\\\"d1001d9e-2b18-46b0-a94e-e354cd50a26c\\\" shortcut=\\\"\\\" displayname=\\\"LPR camera\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\"><iteminfo lastknowncameradisplayname=\\\"LPR camera\\\" cameraid=\\\"16482501-1319-440f-967b-0fc076ba7667\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" ipixsplitmode=\\\"0\\\" keepimagequalitywhenmaximized=\\\"False\\\" maintainimageaspectratio=\\\"True\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" /><properties /></viewitem><viewitem id=\\\"e1473120-02ed-449f-bda6-9497568ce546\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"69199daa-86a7-4635-bc6f-cbc51fe558c6\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"546ba8b8-9482-44e4-abcc-b1d0dc14c155\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"ec210df8-c22a-434e-86e2-b725e76559df\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"95a39cf2-f405-4f67-8a55-72b0c0f5f38a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a68489af-6a9f-46e2-8634-05e1f41e111d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"7d66ee08-dba7-4517-b2b5-f9209d9b24c4\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"198cfe1d-7431-49e0-92ec-c1e86b56a007\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"c697cc7c-a9be-4de8-a921-02e7d7eb2d35\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"b9afb702-ac3d-4e2a-9eed-670db1163c43\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"711bcf13-b31b-42be-8079-f53c3ca278de\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2fbd75f7-7a1a-4bd0-a670-b13d9a8a9773\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"1442394e-9d1e-49d6-b00c-5bae1612ba5a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"928d5bdd-65c2-4d36-9970-34798bcaca4b\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"78ad23d0-81ca-4ebb-90d0-a0769b4684c1\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a662932e-0ee5-4c39-93f0-eb19f481cbad\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"8ee8af16-6408-4319-bb29-6999e7b8c588\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2004163d-5499-47b7-a0e0-873d1e16c92d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"820ebb51-3112-42d5-9ef8-9902052b0cab\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"07010b7c-758e-4ac0-9f01-0451429700d5\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"27dc28f4-e89e-44c2-a7cc-d4b08cf0c727\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"72131cb8-4e56-459c-863f-549bb17dad07\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"0086d81b-1e3c-4cc5-8c24-86f32768dd0a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"f55568ff-7158-418a-a56e-80e437cdf875\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem></viewitems><properties><property value=\\\"<ViewLayout><Icon>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</Icon><ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem></ViewItems></ViewLayout>\\\" name=\\\"LayoutPropperty\\\" /></properties></view>",
- "displayName": "Night",
- "id": "23b6c495-5fbd-4f4e-9a44-23d3e55f7adc",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Night",
- "relations": {
- "self": {
- "type": "monitorPresets",
- "id": "23b6c495-5fbd-4f4e-9a44-23d3e55f7adc"
}, - "parent": {
- "type": "monitors",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f"
}
}
}
], - "monitorSize": 20,
- "monitorState": "string",
- "name": "Front desk monitor",
- "noLayout": "Preserve",
- "view": {
- "type": "views",
- "id": "01c5dada-2530-439c-9a2f-08af5dd45813"
}, - "relations": {
- "self": {
- "type": "monitors",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f"
}, - "parent": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
], - "name": "My wall",
- "statusText": true,
- "titleBar": "None",
- "videoWallPresets": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "VideoWallPreset may have a long description",
- "displayName": "Night",
- "id": "3cc421f4-f20e-4254-a472-425ded951bc4",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Night",
- "relations": {
- "self": {
- "type": "videoWallPresets",
- "id": "3cc421f4-f20e-4254-a472-425ded951bc4"
}, - "parent": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
], - "width": 200,
- "relations": {
- "self": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
}
Video wall
id required | string <guid> Example: 1da906e6-9599-4f39-b63a-e1a597649ae7 Id of the object |
description | string Description |
name | string Name |
statusText | boolean Status text. Is status text shown |
titleBar | string Enum: "None" "Caption" Title bar. What to show in the title bar.
Value map to display names:
None=None |
object |
{- "description": "VideoWall may have a long description",
- "name": "My wall",
- "statusText": true,
- "titleBar": "None",
- "relations": {
- "self": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
{- "data": {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "VideoWall may have a long description",
- "displayName": "My wall",
- "height": 200,
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "monitors": [
- {
- "aspectRatio": "Aspect4x3",
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Monitor may have a long description",
- "displayName": "Front desk monitor",
- "emptyViewItems": "Preserve",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f",
- "insertionMethod": "Linked",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "locationX": 0,
- "locationY": 0,
- "monitorPresets": [
- {
- "definitionXml": "<view viewlayouttype=\\\"VideoOS.RemoteClient.Application.Data.ViewLayouts.ViewLayout5x5, VideoOS.RemoteClient.Application\\\" shortcut=\\\"\\\" displayname=\\\"Night\\\" id=\\\"f1e9dcfd-7353-4d26-9475-22800c41d796\\\"><viewitems><viewitem id=\\\"d1001d9e-2b18-46b0-a94e-e354cd50a26c\\\" shortcut=\\\"\\\" displayname=\\\"LPR camera\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\"><iteminfo lastknowncameradisplayname=\\\"LPR camera\\\" cameraid=\\\"16482501-1319-440f-967b-0fc076ba7667\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" ipixsplitmode=\\\"0\\\" keepimagequalitywhenmaximized=\\\"False\\\" maintainimageaspectratio=\\\"True\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" /><properties /></viewitem><viewitem id=\\\"e1473120-02ed-449f-bda6-9497568ce546\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"69199daa-86a7-4635-bc6f-cbc51fe558c6\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"546ba8b8-9482-44e4-abcc-b1d0dc14c155\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"ec210df8-c22a-434e-86e2-b725e76559df\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"95a39cf2-f405-4f67-8a55-72b0c0f5f38a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a68489af-6a9f-46e2-8634-05e1f41e111d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"7d66ee08-dba7-4517-b2b5-f9209d9b24c4\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"198cfe1d-7431-49e0-92ec-c1e86b56a007\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"c697cc7c-a9be-4de8-a921-02e7d7eb2d35\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"b9afb702-ac3d-4e2a-9eed-670db1163c43\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"711bcf13-b31b-42be-8079-f53c3ca278de\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2fbd75f7-7a1a-4bd0-a670-b13d9a8a9773\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"1442394e-9d1e-49d6-b00c-5bae1612ba5a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"928d5bdd-65c2-4d36-9970-34798bcaca4b\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"78ad23d0-81ca-4ebb-90d0-a0769b4684c1\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a662932e-0ee5-4c39-93f0-eb19f481cbad\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"8ee8af16-6408-4319-bb29-6999e7b8c588\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2004163d-5499-47b7-a0e0-873d1e16c92d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"820ebb51-3112-42d5-9ef8-9902052b0cab\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"07010b7c-758e-4ac0-9f01-0451429700d5\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"27dc28f4-e89e-44c2-a7cc-d4b08cf0c727\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"72131cb8-4e56-459c-863f-549bb17dad07\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"0086d81b-1e3c-4cc5-8c24-86f32768dd0a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"f55568ff-7158-418a-a56e-80e437cdf875\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem></viewitems><properties><property value=\\\"<ViewLayout><Icon>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</Icon><ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem></ViewItems></ViewLayout>\\\" name=\\\"LayoutPropperty\\\" /></properties></view>",
- "displayName": "Night",
- "id": "23b6c495-5fbd-4f4e-9a44-23d3e55f7adc",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Night",
- "relations": {
- "self": {
- "type": "monitorPresets",
- "id": "23b6c495-5fbd-4f4e-9a44-23d3e55f7adc"
}, - "parent": {
- "type": "monitors",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f"
}
}
}
], - "monitorSize": 20,
- "monitorState": "string",
- "name": "Front desk monitor",
- "noLayout": "Preserve",
- "view": {
- "type": "views",
- "id": "01c5dada-2530-439c-9a2f-08af5dd45813"
}, - "relations": {
- "self": {
- "type": "monitors",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f"
}, - "parent": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
], - "name": "My wall",
- "statusText": true,
- "titleBar": "None",
- "videoWallPresets": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "VideoWallPreset may have a long description",
- "displayName": "Night",
- "id": "3cc421f4-f20e-4254-a472-425ded951bc4",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Night",
- "relations": {
- "self": {
- "type": "videoWallPresets",
- "id": "3cc421f4-f20e-4254-a472-425ded951bc4"
}, - "parent": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
], - "width": 200,
- "relations": {
- "self": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
}
Video wall
id required | string <guid> Example: 1da906e6-9599-4f39-b63a-e1a597649ae7 Id of the object |
task required | string Example: task=ChangeSecurityPermissions task=ChangeSecurityPermissions ChangeSecurityPermissions - Edit permissions |
object (path_roles) User or role to update |
{- "userPath": {
- "type": "roles",
- "id": "9b9cd381-00ab-41a6-a0a5-be8c705bc26b"
}
}
{- "result": {
- "displayName": "MultiStream Camera",
- "enabled": true,
- "userPath": {
- "type": "roles",
- "id": "9b9cd381-00ab-41a6-a0a5-be8c705bc26b"
}
}
}
Video wall
id required | string <guid> Example: 1da906e6-9599-4f39-b63a-e1a597649ae7 Id of the videoWall object |
{- "array": [
- {
- "aspectRatio": "Aspect4x3",
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Monitor may have a long description",
- "displayName": "Front desk monitor",
- "emptyViewItems": "Preserve",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f",
- "insertionMethod": "Linked",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "locationX": 0,
- "locationY": 0,
- "monitorPresets": [
- {
- "definitionXml": "<view viewlayouttype=\\\"VideoOS.RemoteClient.Application.Data.ViewLayouts.ViewLayout5x5, VideoOS.RemoteClient.Application\\\" shortcut=\\\"\\\" displayname=\\\"Night\\\" id=\\\"f1e9dcfd-7353-4d26-9475-22800c41d796\\\"><viewitems><viewitem id=\\\"d1001d9e-2b18-46b0-a94e-e354cd50a26c\\\" shortcut=\\\"\\\" displayname=\\\"LPR camera\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\"><iteminfo lastknowncameradisplayname=\\\"LPR camera\\\" cameraid=\\\"16482501-1319-440f-967b-0fc076ba7667\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" ipixsplitmode=\\\"0\\\" keepimagequalitywhenmaximized=\\\"False\\\" maintainimageaspectratio=\\\"True\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" /><properties /></viewitem><viewitem id=\\\"e1473120-02ed-449f-bda6-9497568ce546\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"69199daa-86a7-4635-bc6f-cbc51fe558c6\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"546ba8b8-9482-44e4-abcc-b1d0dc14c155\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"ec210df8-c22a-434e-86e2-b725e76559df\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"95a39cf2-f405-4f67-8a55-72b0c0f5f38a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a68489af-6a9f-46e2-8634-05e1f41e111d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"7d66ee08-dba7-4517-b2b5-f9209d9b24c4\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"198cfe1d-7431-49e0-92ec-c1e86b56a007\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"c697cc7c-a9be-4de8-a921-02e7d7eb2d35\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"b9afb702-ac3d-4e2a-9eed-670db1163c43\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"711bcf13-b31b-42be-8079-f53c3ca278de\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2fbd75f7-7a1a-4bd0-a670-b13d9a8a9773\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"1442394e-9d1e-49d6-b00c-5bae1612ba5a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"928d5bdd-65c2-4d36-9970-34798bcaca4b\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"78ad23d0-81ca-4ebb-90d0-a0769b4684c1\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a662932e-0ee5-4c39-93f0-eb19f481cbad\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"8ee8af16-6408-4319-bb29-6999e7b8c588\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2004163d-5499-47b7-a0e0-873d1e16c92d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"820ebb51-3112-42d5-9ef8-9902052b0cab\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"07010b7c-758e-4ac0-9f01-0451429700d5\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"27dc28f4-e89e-44c2-a7cc-d4b08cf0c727\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"72131cb8-4e56-459c-863f-549bb17dad07\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"0086d81b-1e3c-4cc5-8c24-86f32768dd0a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"f55568ff-7158-418a-a56e-80e437cdf875\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem></viewitems><properties><property value=\\\"<ViewLayout><Icon>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</Icon><ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem></ViewItems></ViewLayout>\\\" name=\\\"LayoutPropperty\\\" /></properties></view>",
- "displayName": "Night",
- "id": "23b6c495-5fbd-4f4e-9a44-23d3e55f7adc",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Night",
- "relations": {
- "self": {
- "type": "monitorPresets",
- "id": "23b6c495-5fbd-4f4e-9a44-23d3e55f7adc"
}, - "parent": {
- "type": "monitors",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f"
}
}
}
], - "monitorSize": 20,
- "monitorState": "string",
- "name": "Front desk monitor",
- "noLayout": "Preserve",
- "view": {
- "type": "views",
- "id": "01c5dada-2530-439c-9a2f-08af5dd45813"
}, - "relations": {
- "self": {
- "type": "monitors",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f"
}, - "parent": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
]
}
Video wall
id required | string <guid> Example: 1da906e6-9599-4f39-b63a-e1a597649ae7 Id of the videoWall object |
aspectRatio | string Enum: "Aspect16x9" "Aspect4x3" Aspect ratio.
Value map to display names:
Aspect16x9=Aspect16x9 |
description | string Description |
emptyViewItems | string Enum: "Preserve" "Clear" Empty preset item. What to show in an empty preset layout item.
Value map to display names:
Preserve=Preserve |
insertionMethod | string Enum: "Linked" "Independent" Element insertion.
Value map to display names:
Linked=Linked |
locationX | number <double> Location X coordinate. X coordinate of monitor upper left corner |
locationY | number <double> Location Y coordinate. Y coordinate of monitor upper left corner |
monitorSize | number <double> Size. Size of monitor in inches |
name | string Name |
noLayout | string Enum: "Preserve" "Clear" Empty preset. What to show in an empty preset layout.
Value map to display names:
Preserve=Preserve |
object (path_views) Underlying view. The view containing the contents of this videowall monitor | |
object |
{- "aspectRatio": "Aspect4x3",
- "description": "Monitor may have a long description",
- "emptyViewItems": "Preserve",
- "insertionMethod": "Linked",
- "locationX": 0,
- "locationY": 0,
- "monitorSize": 20,
- "name": "Front desk monitor",
- "noLayout": "Preserve",
- "view": {
- "type": "views",
- "id": "01c5dada-2530-439c-9a2f-08af5dd45813"
}, - "relations": {
- "self": {
- "type": "monitors",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f"
}, - "parent": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
{- "result": {
- "aspectRatio": "Aspect4x3",
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Monitor may have a long description",
- "displayName": "Front desk monitor",
- "emptyViewItems": "Preserve",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f",
- "insertionMethod": "Linked",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "locationX": 0,
- "locationY": 0,
- "monitorPresets": [
- {
- "definitionXml": "<view viewlayouttype=\\\"VideoOS.RemoteClient.Application.Data.ViewLayouts.ViewLayout5x5, VideoOS.RemoteClient.Application\\\" shortcut=\\\"\\\" displayname=\\\"Night\\\" id=\\\"f1e9dcfd-7353-4d26-9475-22800c41d796\\\"><viewitems><viewitem id=\\\"d1001d9e-2b18-46b0-a94e-e354cd50a26c\\\" shortcut=\\\"\\\" displayname=\\\"LPR camera\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\"><iteminfo lastknowncameradisplayname=\\\"LPR camera\\\" cameraid=\\\"16482501-1319-440f-967b-0fc076ba7667\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" ipixsplitmode=\\\"0\\\" keepimagequalitywhenmaximized=\\\"False\\\" maintainimageaspectratio=\\\"True\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" /><properties /></viewitem><viewitem id=\\\"e1473120-02ed-449f-bda6-9497568ce546\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"69199daa-86a7-4635-bc6f-cbc51fe558c6\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"546ba8b8-9482-44e4-abcc-b1d0dc14c155\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"ec210df8-c22a-434e-86e2-b725e76559df\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"95a39cf2-f405-4f67-8a55-72b0c0f5f38a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a68489af-6a9f-46e2-8634-05e1f41e111d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"7d66ee08-dba7-4517-b2b5-f9209d9b24c4\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"198cfe1d-7431-49e0-92ec-c1e86b56a007\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"c697cc7c-a9be-4de8-a921-02e7d7eb2d35\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"b9afb702-ac3d-4e2a-9eed-670db1163c43\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"711bcf13-b31b-42be-8079-f53c3ca278de\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2fbd75f7-7a1a-4bd0-a670-b13d9a8a9773\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"1442394e-9d1e-49d6-b00c-5bae1612ba5a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"928d5bdd-65c2-4d36-9970-34798bcaca4b\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"78ad23d0-81ca-4ebb-90d0-a0769b4684c1\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"a662932e-0ee5-4c39-93f0-eb19f481cbad\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"8ee8af16-6408-4319-bb29-6999e7b8c588\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"2004163d-5499-47b7-a0e0-873d1e16c92d\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"820ebb51-3112-42d5-9ef8-9902052b0cab\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"07010b7c-758e-4ac0-9f01-0451429700d5\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"27dc28f4-e89e-44c2-a7cc-d4b08cf0c727\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"72131cb8-4e56-459c-863f-549bb17dad07\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"0086d81b-1e3c-4cc5-8c24-86f32768dd0a\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem><viewitem id=\\\"f55568ff-7158-418a-a56e-80e437cdf875\\\" shortcut=\\\"\\\" displayname=\\\"Empty position.\\\" type=\\\"VideoOS.RemoteClient.Application.Data.Configuration.EmptyViewItem, VideoOS.RemoteClient.Application\\\"><properties /></viewitem></viewitems><properties><property value=\\\"<ViewLayout><Icon>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</Icon><ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>0</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>200</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>400</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>600</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>0</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>200</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>400</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>600</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem><ViewItem><Position><X>800</X><Y>800</Y></Position><Size><Width>200</Width><Height>200</Height></Size></ViewItem></ViewItems></ViewLayout>\\\" name=\\\"LayoutPropperty\\\" /></properties></view>",
- "displayName": "Night",
- "id": "23b6c495-5fbd-4f4e-9a44-23d3e55f7adc",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Night",
- "relations": {
- "self": {
- "type": "monitorPresets",
- "id": "23b6c495-5fbd-4f4e-9a44-23d3e55f7adc"
}, - "parent": {
- "type": "monitors",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f"
}
}
}
], - "monitorSize": 20,
- "monitorState": "string",
- "name": "Front desk monitor",
- "noLayout": "Preserve",
- "view": {
- "type": "views",
- "id": "01c5dada-2530-439c-9a2f-08af5dd45813"
}, - "relations": {
- "self": {
- "type": "monitors",
- "id": "ba113936-9a15-4be5-84b6-29a9d0e3cd3f"
}, - "parent": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
}
Video wall
id required | string <guid> Example: 1da906e6-9599-4f39-b63a-e1a597649ae7 Id of the videoWall object |
{- "array": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "VideoWallPreset may have a long description",
- "displayName": "Night",
- "id": "3cc421f4-f20e-4254-a472-425ded951bc4",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Night",
- "relations": {
- "self": {
- "type": "videoWallPresets",
- "id": "3cc421f4-f20e-4254-a472-425ded951bc4"
}, - "parent": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
]
}
Video wall
id required | string <guid> Example: 1da906e6-9599-4f39-b63a-e1a597649ae7 Id of the videoWall object |
description | string Description |
name | string Name |
object |
{- "description": "VideoWallPreset may have a long description",
- "name": "Night",
- "relations": {
- "self": {
- "type": "videoWallPresets",
- "id": "3cc421f4-f20e-4254-a472-425ded951bc4"
}, - "parent": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
{- "result": {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "VideoWallPreset may have a long description",
- "displayName": "Night",
- "id": "3cc421f4-f20e-4254-a472-425ded951bc4",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Night",
- "relations": {
- "self": {
- "type": "videoWallPresets",
- "id": "3cc421f4-f20e-4254-a472-425ded951bc4"
}, - "parent": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
}
Video wall
idParent required | string <guid> Example: 1da906e6-9599-4f39-b63a-e1a597649ae7 Id of parent object |
id required | string <guid> Example: 1da906e6-9599-4f39-b63a-e1a597649ae7 Id of the object |
{- "array": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "VideoWallPreset may have a long description",
- "displayName": "Night",
- "id": "3cc421f4-f20e-4254-a472-425ded951bc4",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Night",
- "relations": {
- "self": {
- "type": "videoWallPresets",
- "id": "3cc421f4-f20e-4254-a472-425ded951bc4"
}, - "parent": {
- "type": "videoWalls",
- "id": "1da906e6-9599-4f39-b63a-e1a597649ae7"
}
}
}
]
}
Video wall
idParent required | string <guid> Example: 1da906e6-9599-4f39-b63a-e1a597649ae7 Id of parent object |
id required | string <guid> Example: 1da906e6-9599-4f39-b63a-e1a597649ae7 Id of the object |
{- "state": "Success"
}
Video wall
idParent required | string <guid> Example: 1da906e6-9599-4f39-b63a-e1a597649ae7 Id of parent object |
id required | string <guid> Example: 1da906e6-9599-4f39-b63a-e1a597649ae7 Id of the object |
{- "state": "Success"
}
{- "array": [
- {
- "displayName": "2x1 Audio",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "layoutCustomId": "string",
- "layoutIcon": "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",
- "layoutViewItems": "<ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem><ViewItem><Position><X>500</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem></ViewItems>",
- "name": "2x1 Audio",
- "shortcut": "string",
- "viewLayoutType": "string",
- "viewItem": [
- {
- "displayName": "Index 0",
- "viewItemDefinitionXml": "<viewitem id=\\\"f11ff2f9-6e20-4e50-8528-e6b27b4f9a0b\\\" displayname=\\\"Camera ViewItem\\\" shortcut=\\\"\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\" smartClientId=\\\"8B1A85EF-9A4E-4CD8-9214-85EA148676BD\\\"><iteminfo cameraid=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" lastknowncameradisplayname=\\\"Mini Sequencer camera\\\" livestreamid=\\\"00000000-0000-0000-0000-000000000000\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" maintainimageaspectratio=\\\"True\\\" usedefaultdisplaysettings=\\\"True\\\" showtitlebar=\\\"True\\\" keepimagequalitywhenmaximized=\\\"False\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" pointandclickmode=\\\"0\\\" usingproperties=\\\"True\\\" /><properties><property name=\\\"cameraid\\\" value=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" /><property name=\\\"framerate\\\" value=\\\"0\\\" /><property name=\\\"imagequality\\\" value=\\\"100\\\" /><property name=\\\"lastknowncameradisplayname\\\" value=\\\"Mini Sequencer camera\\\" /></properties></viewitem>",
- "viewItemPosition": 0
}
], - "relations": {
- "self": {
- "type": "views",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208"
}, - "parent": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}
]
}
View folder
id required | string <guid> Example: 3800261d-bd75-4d01-a822-e2a0d364d208 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "displayName": "2x1 Audio",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "layoutCustomId": "string",
- "layoutIcon": "iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAALEgAACxIB0t1+/AAAAHdJREFUOE+lkzEKRCEUA3NS+WAhWAgWgoh3z5LtQwqLqcY3VgFJvPB0rI9x76VDD5LHOYcOBZLH3psOBZLHWosOBZLHnJMOBZLHGIMOBZJH750OBZJHa40OBZJHrZUOBZLH9310KJA8Sil0KJD8+xZelvgf02vgB00kj9vJK246AAAAAElFTkSuQmCC",
- "layoutViewItems": "<ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem><ViewItem><Position><X>500</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem></ViewItems>",
- "name": "2x1 Audio",
- "shortcut": "string",
- "viewLayoutType": "string",
- "viewItem": [
- {
- "displayName": "Index 0",
- "viewItemDefinitionXml": "<viewitem id=\\\"f11ff2f9-6e20-4e50-8528-e6b27b4f9a0b\\\" displayname=\\\"Camera ViewItem\\\" shortcut=\\\"\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\" smartClientId=\\\"8B1A85EF-9A4E-4CD8-9214-85EA148676BD\\\"><iteminfo cameraid=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" lastknowncameradisplayname=\\\"Mini Sequencer camera\\\" livestreamid=\\\"00000000-0000-0000-0000-000000000000\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" maintainimageaspectratio=\\\"True\\\" usedefaultdisplaysettings=\\\"True\\\" showtitlebar=\\\"True\\\" keepimagequalitywhenmaximized=\\\"False\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" pointandclickmode=\\\"0\\\" usingproperties=\\\"True\\\" /><properties><property name=\\\"cameraid\\\" value=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" /><property name=\\\"framerate\\\" value=\\\"0\\\" /><property name=\\\"imagequality\\\" value=\\\"100\\\" /><property name=\\\"lastknowncameradisplayname\\\" value=\\\"Mini Sequencer camera\\\" /></properties></viewitem>",
- "viewItemPosition": 0
}
], - "relations": {
- "self": {
- "type": "views",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208"
}, - "parent": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
View folder
id required | string <guid> Example: 3800261d-bd75-4d01-a822-e2a0d364d208 Id of the object |
layoutCustomId | string Custom ID. The specific instance ID of this view and layout |
layoutIcon | string Layout icon. Base 64 encoded image representing the layout format, size should be 16x16 pixels |
layoutViewItems | string Layout xml. The xml defining the layout, can be taken from the Layout xml definition, node viewitems |
name | string Name |
shortcut | string View shortcut |
viewLayoutType | string View layout type. Must refer to a class in the Smart Client, like: VideoOS.RemoteClient.Application.Data.ViewLayouts.ViewLayoutCustom, VideoOS.RemoteClient.Application. Can be taken from the Layout xml definition: viewLayoutType node. |
Array of objects (viewItem) | |
object |
{- "layoutCustomId": "string",
- "layoutIcon": "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",
- "layoutViewItems": "<ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem><ViewItem><Position><X>500</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem></ViewItems>",
- "name": "2x1 Audio",
- "shortcut": "string",
- "viewLayoutType": "string",
- "viewItem": [
- {
- "viewItemDefinitionXml": "<viewitem id=\\\"f11ff2f9-6e20-4e50-8528-e6b27b4f9a0b\\\" displayname=\\\"Camera ViewItem\\\" shortcut=\\\"\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\" smartClientId=\\\"8B1A85EF-9A4E-4CD8-9214-85EA148676BD\\\"><iteminfo cameraid=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" lastknowncameradisplayname=\\\"Mini Sequencer camera\\\" livestreamid=\\\"00000000-0000-0000-0000-000000000000\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" maintainimageaspectratio=\\\"True\\\" usedefaultdisplaysettings=\\\"True\\\" showtitlebar=\\\"True\\\" keepimagequalitywhenmaximized=\\\"False\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" pointandclickmode=\\\"0\\\" usingproperties=\\\"True\\\" /><properties><property name=\\\"cameraid\\\" value=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" /><property name=\\\"framerate\\\" value=\\\"0\\\" /><property name=\\\"imagequality\\\" value=\\\"100\\\" /><property name=\\\"lastknowncameradisplayname\\\" value=\\\"Mini Sequencer camera\\\" /></properties></viewitem>"
}
], - "relations": {
- "self": {
- "type": "views",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208"
}, - "parent": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}
{- "data": {
- "displayName": "2x1 Audio",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "layoutCustomId": "string",
- "layoutIcon": "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",
- "layoutViewItems": "<ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem><ViewItem><Position><X>500</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem></ViewItems>",
- "name": "2x1 Audio",
- "shortcut": "string",
- "viewLayoutType": "string",
- "viewItem": [
- {
- "displayName": "Index 0",
- "viewItemDefinitionXml": "<viewitem id=\\\"f11ff2f9-6e20-4e50-8528-e6b27b4f9a0b\\\" displayname=\\\"Camera ViewItem\\\" shortcut=\\\"\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\" smartClientId=\\\"8B1A85EF-9A4E-4CD8-9214-85EA148676BD\\\"><iteminfo cameraid=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" lastknowncameradisplayname=\\\"Mini Sequencer camera\\\" livestreamid=\\\"00000000-0000-0000-0000-000000000000\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" maintainimageaspectratio=\\\"True\\\" usedefaultdisplaysettings=\\\"True\\\" showtitlebar=\\\"True\\\" keepimagequalitywhenmaximized=\\\"False\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" pointandclickmode=\\\"0\\\" usingproperties=\\\"True\\\" /><properties><property name=\\\"cameraid\\\" value=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" /><property name=\\\"framerate\\\" value=\\\"0\\\" /><property name=\\\"imagequality\\\" value=\\\"100\\\" /><property name=\\\"lastknowncameradisplayname\\\" value=\\\"Mini Sequencer camera\\\" /></properties></viewitem>",
- "viewItemPosition": 0
}
], - "relations": {
- "self": {
- "type": "views",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208"
}, - "parent": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}
}
View folder
id required | string <guid> Example: 3800261d-bd75-4d01-a822-e2a0d364d208 Id of the object |
layoutCustomId | string Custom ID. The specific instance ID of this view and layout |
layoutIcon | string Layout icon. Base 64 encoded image representing the layout format, size should be 16x16 pixels |
layoutViewItems | string Layout xml. The xml defining the layout, can be taken from the Layout xml definition, node viewitems |
name | string Name |
shortcut | string View shortcut |
viewLayoutType | string View layout type. Must refer to a class in the Smart Client, like: VideoOS.RemoteClient.Application.Data.ViewLayouts.ViewLayoutCustom, VideoOS.RemoteClient.Application. Can be taken from the Layout xml definition: viewLayoutType node. |
Array of objects (viewItem) | |
object |
{- "layoutCustomId": "string",
- "layoutIcon": "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",
- "layoutViewItems": "<ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem><ViewItem><Position><X>500</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem></ViewItems>",
- "name": "2x1 Audio",
- "shortcut": "string",
- "viewLayoutType": "string",
- "viewItem": [
- {
- "viewItemDefinitionXml": "<viewitem id=\\\"f11ff2f9-6e20-4e50-8528-e6b27b4f9a0b\\\" displayname=\\\"Camera ViewItem\\\" shortcut=\\\"\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\" smartClientId=\\\"8B1A85EF-9A4E-4CD8-9214-85EA148676BD\\\"><iteminfo cameraid=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" lastknowncameradisplayname=\\\"Mini Sequencer camera\\\" livestreamid=\\\"00000000-0000-0000-0000-000000000000\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" maintainimageaspectratio=\\\"True\\\" usedefaultdisplaysettings=\\\"True\\\" showtitlebar=\\\"True\\\" keepimagequalitywhenmaximized=\\\"False\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" pointandclickmode=\\\"0\\\" usingproperties=\\\"True\\\" /><properties><property name=\\\"cameraid\\\" value=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" /><property name=\\\"framerate\\\" value=\\\"0\\\" /><property name=\\\"imagequality\\\" value=\\\"100\\\" /><property name=\\\"lastknowncameradisplayname\\\" value=\\\"Mini Sequencer camera\\\" /></properties></viewitem>"
}
], - "relations": {
- "self": {
- "type": "views",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208"
}, - "parent": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}
{- "data": {
- "displayName": "2x1 Audio",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "layoutCustomId": "string",
- "layoutIcon": "iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAALEgAACxIB0t1+/AAAAHdJREFUOE+lkzEKRCEUA3NS+WAhWAgWgoh3z5LtQwqLqcY3VgFJvPB0rI9x76VDD5LHOYcOBZLH3psOBZLHWosOBZLHnJMOBZLHGIMOBZJH750OBZJHa40OBZJHrZUOBZLH9310KJA8Sil0KJD8+xZelvgf02vgB00kj9vJK246AAAAAElFTkSuQmCC",
- "layoutViewItems": "<ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem><ViewItem><Position><X>500</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem></ViewItems>",
- "name": "2x1 Audio",
- "shortcut": "string",
- "viewLayoutType": "string",
- "viewItem": [
- {
- "displayName": "Index 0",
- "viewItemDefinitionXml": "<viewitem id=\\\"f11ff2f9-6e20-4e50-8528-e6b27b4f9a0b\\\" displayname=\\\"Camera ViewItem\\\" shortcut=\\\"\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\" smartClientId=\\\"8B1A85EF-9A4E-4CD8-9214-85EA148676BD\\\"><iteminfo cameraid=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" lastknowncameradisplayname=\\\"Mini Sequencer camera\\\" livestreamid=\\\"00000000-0000-0000-0000-000000000000\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" maintainimageaspectratio=\\\"True\\\" usedefaultdisplaysettings=\\\"True\\\" showtitlebar=\\\"True\\\" keepimagequalitywhenmaximized=\\\"False\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" pointandclickmode=\\\"0\\\" usingproperties=\\\"True\\\" /><properties><property name=\\\"cameraid\\\" value=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" /><property name=\\\"framerate\\\" value=\\\"0\\\" /><property name=\\\"imagequality\\\" value=\\\"100\\\" /><property name=\\\"lastknowncameradisplayname\\\" value=\\\"Mini Sequencer camera\\\" /></properties></viewitem>",
- "viewItemPosition": 0
}
], - "relations": {
- "self": {
- "type": "views",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208"
}, - "parent": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}
}
{- "array": [
- {
- "description": "ViewGroup may have a long description",
- "displayName": "Basic User Group",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Basic User Group",
- "viewGroupDataXml": "string",
- "viewGroups": [
- { }
], - "views": [
- {
- "displayName": "2x1 Audio",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "layoutCustomId": "string",
- "layoutIcon": "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",
- "layoutViewItems": "<ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem><ViewItem><Position><X>500</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem></ViewItems>",
- "name": "2x1 Audio",
- "shortcut": "string",
- "viewLayoutType": "string",
- "viewItem": [
- {
- "displayName": "Index 0",
- "viewItemDefinitionXml": "<viewitem id=\\\"f11ff2f9-6e20-4e50-8528-e6b27b4f9a0b\\\" displayname=\\\"Camera ViewItem\\\" shortcut=\\\"\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\" smartClientId=\\\"8B1A85EF-9A4E-4CD8-9214-85EA148676BD\\\"><iteminfo cameraid=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" lastknowncameradisplayname=\\\"Mini Sequencer camera\\\" livestreamid=\\\"00000000-0000-0000-0000-000000000000\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" maintainimageaspectratio=\\\"True\\\" usedefaultdisplaysettings=\\\"True\\\" showtitlebar=\\\"True\\\" keepimagequalitywhenmaximized=\\\"False\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" pointandclickmode=\\\"0\\\" usingproperties=\\\"True\\\" /><properties><property name=\\\"cameraid\\\" value=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" /><property name=\\\"framerate\\\" value=\\\"0\\\" /><property name=\\\"imagequality\\\" value=\\\"100\\\" /><property name=\\\"lastknowncameradisplayname\\\" value=\\\"Mini Sequencer camera\\\" /></properties></viewitem>",
- "viewItemPosition": 0
}
], - "relations": {
- "self": {
- "type": "views",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208"
}, - "parent": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}
], - "relations": {
- "self": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}
]
}
View groups
description | string Description |
name | string Name |
viewGroupDataXml | string View group data as XML |
object |
{- "description": "ViewGroup may have a long description",
- "name": "Basic User Group",
- "viewGroupDataXml": "string",
- "relations": {
- "self": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}
{- "result": {
- "description": "ViewGroup may have a long description",
- "displayName": "Basic User Group",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Basic User Group",
- "viewGroupDataXml": "string",
- "viewGroups": [
- { }
], - "views": [
- {
- "displayName": "2x1 Audio",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "layoutCustomId": "string",
- "layoutIcon": "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",
- "layoutViewItems": "<ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem><ViewItem><Position><X>500</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem></ViewItems>",
- "name": "2x1 Audio",
- "shortcut": "string",
- "viewLayoutType": "string",
- "viewItem": [
- {
- "displayName": "Index 0",
- "viewItemDefinitionXml": "<viewitem id=\\\"f11ff2f9-6e20-4e50-8528-e6b27b4f9a0b\\\" displayname=\\\"Camera ViewItem\\\" shortcut=\\\"\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\" smartClientId=\\\"8B1A85EF-9A4E-4CD8-9214-85EA148676BD\\\"><iteminfo cameraid=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" lastknowncameradisplayname=\\\"Mini Sequencer camera\\\" livestreamid=\\\"00000000-0000-0000-0000-000000000000\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" maintainimageaspectratio=\\\"True\\\" usedefaultdisplaysettings=\\\"True\\\" showtitlebar=\\\"True\\\" keepimagequalitywhenmaximized=\\\"False\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" pointandclickmode=\\\"0\\\" usingproperties=\\\"True\\\" /><properties><property name=\\\"cameraid\\\" value=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" /><property name=\\\"framerate\\\" value=\\\"0\\\" /><property name=\\\"imagequality\\\" value=\\\"100\\\" /><property name=\\\"lastknowncameradisplayname\\\" value=\\\"Mini Sequencer camera\\\" /></properties></viewitem>",
- "viewItemPosition": 0
}
], - "relations": {
- "self": {
- "type": "views",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208"
}, - "parent": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}
], - "relations": {
- "self": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}
}
View groups
id required | string <guid> Example: 5f6aa578-76f5-4cbc-8b05-a078e10512a2 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "description": "ViewGroup may have a long description",
- "displayName": "Basic User Group",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Basic User Group",
- "viewGroupDataXml": "string",
- "viewGroups": [
- { }
], - "views": [
- {
- "displayName": "2x1 Audio",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "layoutCustomId": "string",
- "layoutIcon": "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",
- "layoutViewItems": "<ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem><ViewItem><Position><X>500</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem></ViewItems>",
- "name": "2x1 Audio",
- "shortcut": "string",
- "viewLayoutType": "string",
- "viewItem": [
- {
- "displayName": "Index 0",
- "viewItemDefinitionXml": "<viewitem id=\\\"f11ff2f9-6e20-4e50-8528-e6b27b4f9a0b\\\" displayname=\\\"Camera ViewItem\\\" shortcut=\\\"\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\" smartClientId=\\\"8B1A85EF-9A4E-4CD8-9214-85EA148676BD\\\"><iteminfo cameraid=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" lastknowncameradisplayname=\\\"Mini Sequencer camera\\\" livestreamid=\\\"00000000-0000-0000-0000-000000000000\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" maintainimageaspectratio=\\\"True\\\" usedefaultdisplaysettings=\\\"True\\\" showtitlebar=\\\"True\\\" keepimagequalitywhenmaximized=\\\"False\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" pointandclickmode=\\\"0\\\" usingproperties=\\\"True\\\" /><properties><property name=\\\"cameraid\\\" value=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" /><property name=\\\"framerate\\\" value=\\\"0\\\" /><property name=\\\"imagequality\\\" value=\\\"100\\\" /><property name=\\\"lastknowncameradisplayname\\\" value=\\\"Mini Sequencer camera\\\" /></properties></viewitem>",
- "viewItemPosition": 0
}
], - "relations": {
- "self": {
- "type": "views",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208"
}, - "parent": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}
], - "relations": {
- "self": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
View groups
id required | string <guid> Example: 5f6aa578-76f5-4cbc-8b05-a078e10512a2 Id of the object |
description | string Description |
name | string Name |
viewGroupDataXml | string View group data as XML |
object |
{- "description": "ViewGroup may have a long description",
- "name": "Basic User Group",
- "viewGroupDataXml": "string",
- "relations": {
- "self": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}
{- "data": {
- "description": "ViewGroup may have a long description",
- "displayName": "Basic User Group",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Basic User Group",
- "viewGroupDataXml": "string",
- "viewGroups": [
- { }
], - "views": [
- {
- "displayName": "2x1 Audio",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "layoutCustomId": "string",
- "layoutIcon": "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",
- "layoutViewItems": "<ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem><ViewItem><Position><X>500</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem></ViewItems>",
- "name": "2x1 Audio",
- "shortcut": "string",
- "viewLayoutType": "string",
- "viewItem": [
- {
- "displayName": "Index 0",
- "viewItemDefinitionXml": "<viewitem id=\\\"f11ff2f9-6e20-4e50-8528-e6b27b4f9a0b\\\" displayname=\\\"Camera ViewItem\\\" shortcut=\\\"\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\" smartClientId=\\\"8B1A85EF-9A4E-4CD8-9214-85EA148676BD\\\"><iteminfo cameraid=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" lastknowncameradisplayname=\\\"Mini Sequencer camera\\\" livestreamid=\\\"00000000-0000-0000-0000-000000000000\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" maintainimageaspectratio=\\\"True\\\" usedefaultdisplaysettings=\\\"True\\\" showtitlebar=\\\"True\\\" keepimagequalitywhenmaximized=\\\"False\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" pointandclickmode=\\\"0\\\" usingproperties=\\\"True\\\" /><properties><property name=\\\"cameraid\\\" value=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" /><property name=\\\"framerate\\\" value=\\\"0\\\" /><property name=\\\"imagequality\\\" value=\\\"100\\\" /><property name=\\\"lastknowncameradisplayname\\\" value=\\\"Mini Sequencer camera\\\" /></properties></viewitem>",
- "viewItemPosition": 0
}
], - "relations": {
- "self": {
- "type": "views",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208"
}, - "parent": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}
], - "relations": {
- "self": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}
}
View groups
id required | string <guid> Example: 5f6aa578-76f5-4cbc-8b05-a078e10512a2 Id of the object |
description | string Description |
name | string Name |
viewGroupDataXml | string View group data as XML |
object |
{- "description": "ViewGroup may have a long description",
- "name": "Basic User Group",
- "viewGroupDataXml": "string",
- "relations": {
- "self": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}
{- "data": {
- "description": "ViewGroup may have a long description",
- "displayName": "Basic User Group",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Basic User Group",
- "viewGroupDataXml": "string",
- "viewGroups": [
- { }
], - "views": [
- {
- "displayName": "2x1 Audio",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "layoutCustomId": "string",
- "layoutIcon": "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",
- "layoutViewItems": "<ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem><ViewItem><Position><X>500</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem></ViewItems>",
- "name": "2x1 Audio",
- "shortcut": "string",
- "viewLayoutType": "string",
- "viewItem": [
- {
- "displayName": "Index 0",
- "viewItemDefinitionXml": "<viewitem id=\\\"f11ff2f9-6e20-4e50-8528-e6b27b4f9a0b\\\" displayname=\\\"Camera ViewItem\\\" shortcut=\\\"\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\" smartClientId=\\\"8B1A85EF-9A4E-4CD8-9214-85EA148676BD\\\"><iteminfo cameraid=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" lastknowncameradisplayname=\\\"Mini Sequencer camera\\\" livestreamid=\\\"00000000-0000-0000-0000-000000000000\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" maintainimageaspectratio=\\\"True\\\" usedefaultdisplaysettings=\\\"True\\\" showtitlebar=\\\"True\\\" keepimagequalitywhenmaximized=\\\"False\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" pointandclickmode=\\\"0\\\" usingproperties=\\\"True\\\" /><properties><property name=\\\"cameraid\\\" value=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" /><property name=\\\"framerate\\\" value=\\\"0\\\" /><property name=\\\"imagequality\\\" value=\\\"100\\\" /><property name=\\\"lastknowncameradisplayname\\\" value=\\\"Mini Sequencer camera\\\" /></properties></viewitem>",
- "viewItemPosition": 0
}
], - "relations": {
- "self": {
- "type": "views",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208"
}, - "parent": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}
], - "relations": {
- "self": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}
}
View groups
id required | string <guid> Example: 5f6aa578-76f5-4cbc-8b05-a078e10512a2 Id of the object |
task required | string Example: task=ChangeSecurityPermissions task=ChangeSecurityPermissions ChangeSecurityPermissions - Edit permissions |
object (path_roles) User or role to update |
{- "userPath": {
- "type": "roles",
- "id": "9b9cd381-00ab-41a6-a0a5-be8c705bc26b"
}
}
{- "result": {
- "displayName": "MultiStream Camera",
- "enabled": true,
- "userPath": {
- "type": "roles",
- "id": "9b9cd381-00ab-41a6-a0a5-be8c705bc26b"
}
}
}
View groups
id required | string <guid> Example: 5f6aa578-76f5-4cbc-8b05-a078e10512a2 Id of the viewGroup object |
{- "array": [
- {
- "displayName": "2x1 Audio",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "layoutCustomId": "string",
- "layoutIcon": "iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAALEgAACxIB0t1+/AAAAHdJREFUOE+lkzEKRCEUA3NS+WAhWAgWgoh3z5LtQwqLqcY3VgFJvPB0rI9x76VDD5LHOYcOBZLH3psOBZLHWosOBZLHnJMOBZLHGIMOBZJH750OBZJHa40OBZJHrZUOBZLH9310KJA8Sil0KJD8+xZelvgf02vgB00kj9vJK246AAAAAElFTkSuQmCC",
- "layoutViewItems": "<ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem><ViewItem><Position><X>500</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem></ViewItems>",
- "name": "2x1 Audio",
- "shortcut": "string",
- "viewLayoutType": "string",
- "viewItem": [
- {
- "displayName": "Index 0",
- "viewItemDefinitionXml": "<viewitem id=\\\"f11ff2f9-6e20-4e50-8528-e6b27b4f9a0b\\\" displayname=\\\"Camera ViewItem\\\" shortcut=\\\"\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\" smartClientId=\\\"8B1A85EF-9A4E-4CD8-9214-85EA148676BD\\\"><iteminfo cameraid=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" lastknowncameradisplayname=\\\"Mini Sequencer camera\\\" livestreamid=\\\"00000000-0000-0000-0000-000000000000\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" maintainimageaspectratio=\\\"True\\\" usedefaultdisplaysettings=\\\"True\\\" showtitlebar=\\\"True\\\" keepimagequalitywhenmaximized=\\\"False\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" pointandclickmode=\\\"0\\\" usingproperties=\\\"True\\\" /><properties><property name=\\\"cameraid\\\" value=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" /><property name=\\\"framerate\\\" value=\\\"0\\\" /><property name=\\\"imagequality\\\" value=\\\"100\\\" /><property name=\\\"lastknowncameradisplayname\\\" value=\\\"Mini Sequencer camera\\\" /></properties></viewitem>",
- "viewItemPosition": 0
}
], - "relations": {
- "self": {
- "type": "views",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208"
}, - "parent": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}
]
}
View groups
id required | string <guid> Example: 5f6aa578-76f5-4cbc-8b05-a078e10512a2 Id of the viewGroup object |
layoutCustomId | string Custom ID. The specific instance ID of this view and layout |
layoutIcon | string Layout icon. Base 64 encoded image representing the layout format, size should be 16x16 pixels |
layoutViewItems | string Layout xml. The xml defining the layout, can be taken from the Layout xml definition, node viewitems |
name | string Name |
shortcut | string View shortcut |
viewLayoutType | string View layout type. Must refer to a class in the Smart Client, like: VideoOS.RemoteClient.Application.Data.ViewLayouts.ViewLayoutCustom, VideoOS.RemoteClient.Application. Can be taken from the Layout xml definition: viewLayoutType node. |
Array of objects (viewItem) | |
object |
{- "layoutCustomId": "string",
- "layoutIcon": "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",
- "layoutViewItems": "<ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem><ViewItem><Position><X>500</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem></ViewItems>",
- "name": "2x1 Audio",
- "shortcut": "string",
- "viewLayoutType": "string",
- "viewItem": [
- {
- "viewItemDefinitionXml": "<viewitem id=\\\"f11ff2f9-6e20-4e50-8528-e6b27b4f9a0b\\\" displayname=\\\"Camera ViewItem\\\" shortcut=\\\"\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\" smartClientId=\\\"8B1A85EF-9A4E-4CD8-9214-85EA148676BD\\\"><iteminfo cameraid=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" lastknowncameradisplayname=\\\"Mini Sequencer camera\\\" livestreamid=\\\"00000000-0000-0000-0000-000000000000\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" maintainimageaspectratio=\\\"True\\\" usedefaultdisplaysettings=\\\"True\\\" showtitlebar=\\\"True\\\" keepimagequalitywhenmaximized=\\\"False\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" pointandclickmode=\\\"0\\\" usingproperties=\\\"True\\\" /><properties><property name=\\\"cameraid\\\" value=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" /><property name=\\\"framerate\\\" value=\\\"0\\\" /><property name=\\\"imagequality\\\" value=\\\"100\\\" /><property name=\\\"lastknowncameradisplayname\\\" value=\\\"Mini Sequencer camera\\\" /></properties></viewitem>"
}
], - "relations": {
- "self": {
- "type": "views",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208"
}, - "parent": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}
{- "result": {
- "displayName": "2x1 Audio",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "layoutCustomId": "string",
- "layoutIcon": "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",
- "layoutViewItems": "<ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem><ViewItem><Position><X>500</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem></ViewItems>",
- "name": "2x1 Audio",
- "shortcut": "string",
- "viewLayoutType": "string",
- "viewItem": [
- {
- "displayName": "Index 0",
- "viewItemDefinitionXml": "<viewitem id=\\\"f11ff2f9-6e20-4e50-8528-e6b27b4f9a0b\\\" displayname=\\\"Camera ViewItem\\\" shortcut=\\\"\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\" smartClientId=\\\"8B1A85EF-9A4E-4CD8-9214-85EA148676BD\\\"><iteminfo cameraid=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" lastknowncameradisplayname=\\\"Mini Sequencer camera\\\" livestreamid=\\\"00000000-0000-0000-0000-000000000000\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" maintainimageaspectratio=\\\"True\\\" usedefaultdisplaysettings=\\\"True\\\" showtitlebar=\\\"True\\\" keepimagequalitywhenmaximized=\\\"False\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" pointandclickmode=\\\"0\\\" usingproperties=\\\"True\\\" /><properties><property name=\\\"cameraid\\\" value=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" /><property name=\\\"framerate\\\" value=\\\"0\\\" /><property name=\\\"imagequality\\\" value=\\\"100\\\" /><property name=\\\"lastknowncameradisplayname\\\" value=\\\"Mini Sequencer camera\\\" /></properties></viewitem>",
- "viewItemPosition": 0
}
], - "relations": {
- "self": {
- "type": "views",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208"
}, - "parent": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}
}
View groups
id required | string <guid> Example: 5f6aa578-76f5-4cbc-8b05-a078e10512a2 Id of the viewGroup object |
{- "array": [
- {
- "description": "ViewGroup may have a long description",
- "displayName": "Basic User Group",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Basic User Group",
- "viewGroupDataXml": "string",
- "viewGroups": [
- { }
], - "views": [
- {
- "displayName": "2x1 Audio",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "layoutCustomId": "string",
- "layoutIcon": "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",
- "layoutViewItems": "<ViewItems><ViewItem><Position><X>0</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem><ViewItem><Position><X>500</X><Y>0</Y></Position><Size><Width>500</Width><Height>1000</Height></Size></ViewItem></ViewItems>",
- "name": "2x1 Audio",
- "shortcut": "string",
- "viewLayoutType": "string",
- "viewItem": [
- {
- "displayName": "Index 0",
- "viewItemDefinitionXml": "<viewitem id=\\\"f11ff2f9-6e20-4e50-8528-e6b27b4f9a0b\\\" displayname=\\\"Camera ViewItem\\\" shortcut=\\\"\\\" type=\\\"VideoOS.RemoteClient.Application.Data.ContentTypes.CameraContentType.CameraViewItem, VideoOS.RemoteClient.Application\\\" smartClientId=\\\"8B1A85EF-9A4E-4CD8-9214-85EA148676BD\\\"><iteminfo cameraid=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" lastknowncameradisplayname=\\\"Mini Sequencer camera\\\" livestreamid=\\\"00000000-0000-0000-0000-000000000000\\\" imagequality=\\\"100\\\" framerate=\\\"0\\\" maintainimageaspectratio=\\\"True\\\" usedefaultdisplaysettings=\\\"True\\\" showtitlebar=\\\"True\\\" keepimagequalitywhenmaximized=\\\"False\\\" updateonmotiononly=\\\"False\\\" soundonmotion=\\\"0\\\" soundonevent=\\\"0\\\" smartsearchgridwidth=\\\"0\\\" smartsearchgridheight=\\\"0\\\" smartsearchgridmask=\\\"\\\" pointandclickmode=\\\"0\\\" usingproperties=\\\"True\\\" /><properties><property name=\\\"cameraid\\\" value=\\\"6fb823b7-9958-4559-84a1-d7d5f224d3d2\\\" /><property name=\\\"framerate\\\" value=\\\"0\\\" /><property name=\\\"imagequality\\\" value=\\\"100\\\" /><property name=\\\"lastknowncameradisplayname\\\" value=\\\"Mini Sequencer camera\\\" /></properties></viewitem>",
- "viewItemPosition": 0
}
], - "relations": {
- "self": {
- "type": "views",
- "id": "3800261d-bd75-4d01-a822-e2a0d364d208"
}, - "parent": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}
], - "relations": {
- "self": {
- "type": "viewGroups",
- "id": "5f6aa578-76f5-4cbc-8b05-a078e10512a2"
}
}
}
]
}
View groups
idParent required | string <guid> Example: 5f6aa578-76f5-4cbc-8b05-a078e10512a2 Id of parent object |
id required | string <guid> Example: 5f6aa578-76f5-4cbc-8b05-a078e10512a2 Id of the object |
{- "state": "Success"
}
Archives
id required | string <guid> Example: a0136b02-f0ba-4da1-890a-d5818541287d Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "displayName": "ArchiveSchedule",
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": "archiveStorages",
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d"
}, - "parent": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Archives
id required | string <guid> Example: a0136b02-f0ba-4da1-890a-d5818541287d Id of the object |
description | string Description |
framerateReductionEnabled | boolean Frame reduction enabled. Specifies if frame rate reduction is enabled or not on the archive |
maxSize | integer Maximum size. The maximum size of the archive storage in MB. The default value is 1 GB |
name | string Name |
retainMinutes | integer Retention time. The number of minutes that must elapse before data are deleted or archived. The default value is 1 day |
targetFramerate | number <double> Frame rate. The frame rate reduction of media data in frames per second |
object (archiveSchedules) | |
object |
{- "description": "ArchiveStorage may have a long description",
- "framerateReductionEnabled": false,
- "maxSize": 1024,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": "archiveStorages",
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d"
}, - "parent": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}
}
}
{- "data": {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "displayName": "ArchiveSchedule",
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": "archiveStorages",
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d"
}, - "parent": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}
}
}
}
Archives
id required | string <guid> Example: a0136b02-f0ba-4da1-890a-d5818541287d Id of the object |
description | string Description |
framerateReductionEnabled | boolean Frame reduction enabled. Specifies if frame rate reduction is enabled or not on the archive |
maxSize | integer Maximum size. The maximum size of the archive storage in MB. The default value is 1 GB |
name | string Name |
retainMinutes | integer Retention time. The number of minutes that must elapse before data are deleted or archived. The default value is 1 day |
targetFramerate | number <double> Frame rate. The frame rate reduction of media data in frames per second |
object (archiveSchedules) | |
object |
{- "description": "ArchiveStorage may have a long description",
- "framerateReductionEnabled": false,
- "maxSize": 1024,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": "archiveStorages",
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d"
}, - "parent": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}
}
}
{- "data": {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "displayName": "ArchiveSchedule",
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": "archiveStorages",
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d"
}, - "parent": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}
}
}
}
Archives
id required | string <guid> Example: a0136b02-f0ba-4da1-890a-d5818541287d Id of the object |
task required | string Example: task=UnmountArchiveStorage task=ReadArchiveStorageInformation, or task=SetFramerateReductionArchiveStorage, or task=MoveArchiveStorage, or task=MountArchiveStorage, or task=UnmountArchiveStorage ReadArchiveStorageInformation - Read archive storage information SetFramerateReductionArchiveStorage - Enable/disable frame rate reduction on archive MoveArchiveStorage - Move archive MountArchiveStorage - Mount archive UnmountArchiveStorage - Unmount archive |
framerateReductionEnabled | boolean Frame reduction enabled. Specifies if frame rate reduction is enabled or not on the archive |
{- "framerateReductionEnabled": true
}
{- "result": {
- "state": "Success"
}
}
Get specific object of archiveStorageInformation
id required | string <guid> Example: 23aac652-e051-4108-a169-9c74cdd76fb3 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "anyTablesWithData": "Unknown",
- "displayName": "string",
- "isAvailable": false,
- "isMounted": false,
- "lastUpdated": "2022-05-23T09:24:58.9130000+02:00",
- "lockedUsedSpace": -1,
- "usedSpace": -1,
- "relations": {
- "self": {
- "type": "archiveStorageInformation",
- "id": "23aac652-e051-4108-a169-9c74cdd76fb3"
}, - "parent": {
- "type": "archiveStorages",
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Update all fields on archiveStorageInformation
id required | string <guid> Example: 23aac652-e051-4108-a169-9c74cdd76fb3 Id of the object |
object |
{- "relations": {
- "self": {
- "type": "archiveStorageInformation",
- "id": "23aac652-e051-4108-a169-9c74cdd76fb3"
}, - "parent": {
- "type": "archiveStorages",
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d"
}
}
}
{- "data": {
- "anyTablesWithData": "Unknown",
- "displayName": "string",
- "isAvailable": false,
- "isMounted": false,
- "lastUpdated": "2022-05-23T09:24:58.9130000+02:00",
- "lockedUsedSpace": -1,
- "usedSpace": -1,
- "relations": {
- "self": {
- "type": "archiveStorageInformation",
- "id": "23aac652-e051-4108-a169-9c74cdd76fb3"
}, - "parent": {
- "type": "archiveStorages",
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d"
}
}
}
}
Update provided fields on archiveStorageInformation
id required | string <guid> Example: 23aac652-e051-4108-a169-9c74cdd76fb3 Id of the object |
object |
{- "relations": {
- "self": {
- "type": "archiveStorageInformation",
- "id": "23aac652-e051-4108-a169-9c74cdd76fb3"
}, - "parent": {
- "type": "archiveStorages",
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d"
}
}
}
{- "data": {
- "anyTablesWithData": "Unknown",
- "displayName": "string",
- "isAvailable": false,
- "isMounted": false,
- "lastUpdated": "2022-05-23T09:24:58.9130000+02:00",
- "lockedUsedSpace": -1,
- "usedSpace": -1,
- "relations": {
- "self": {
- "type": "archiveStorageInformation",
- "id": "23aac652-e051-4108-a169-9c74cdd76fb3"
}, - "parent": {
- "type": "archiveStorages",
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d"
}
}
}
}
{- "array": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "FailoverGroup may have a long description",
- "displayName": "MyFailoverGroup",
- "failoverRecorders": [
- {
- "activeWebServerUri": "string",
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "databasePath": "myDatabasePath",
- "description": "FailoverRecorder may have a long description",
- "displayName": "groupLevelFailover",
- "enabled": true,
- "hostName": "servertest",
- "id": "2b0bd2b2-aac8-40f5-b723-0c309f7b02eb",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "multicastServerAddress": "0.0.0.0",
- "name": "groupLevelFailover",
- "portNumber": 7563,
- "position": 0,
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "udpPort": 1111,
- "relations": {
- "self": {
- "type": "failoverRecorders",
- "id": "2b0bd2b2-aac8-40f5-b723-0c309f7b02eb"
}, - "parent": {
- "type": "failoverGroups",
- "id": "363c3fad-f404-49d2-baf4-a020ab50712c"
}
}
}
], - "id": "363c3fad-f404-49d2-baf4-a020ab50712c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyFailoverGroup",
- "relations": {
- "self": {
- "type": "failoverGroups",
- "id": "363c3fad-f404-49d2-baf4-a020ab50712c"
}
}
}
]
}
Failover groups, or perform a task
description | string Description |
name | string Name |
object |
{- "description": "FailoverGroup may have a long description",
- "name": "MyFailoverGroup",
- "relations": {
- "self": {
- "type": "failoverGroups",
- "id": "363c3fad-f404-49d2-baf4-a020ab50712c"
}
}
}
{- "result": {
- "displayName": "Failover groups",
- "failoverGroup": {
- "type": "failoverGroups",
- "id": "8e28bd1f-f94c-49c9-a69e-3f5cd5d32ad5"
}, - "failoverServer": {
- "type": "failoverRecorders",
- "id": "81c874cb-8eb2-4d7c-a6b7-4870c3930221"
}, - "position": -1
}
}
Failover groups
id required | string <guid> Example: 363c3fad-f404-49d2-baf4-a020ab50712c Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "FailoverGroup may have a long description",
- "displayName": "MyFailoverGroup",
- "failoverRecorders": [
- {
- "activeWebServerUri": "string",
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "databasePath": "myDatabasePath",
- "description": "FailoverRecorder may have a long description",
- "displayName": "groupLevelFailover",
- "enabled": true,
- "hostName": "servertest",
- "id": "2b0bd2b2-aac8-40f5-b723-0c309f7b02eb",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "multicastServerAddress": "0.0.0.0",
- "name": "groupLevelFailover",
- "portNumber": 7563,
- "position": 0,
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "udpPort": 1111,
- "relations": {
- "self": {
- "type": "failoverRecorders",
- "id": "2b0bd2b2-aac8-40f5-b723-0c309f7b02eb"
}, - "parent": {
- "type": "failoverGroups",
- "id": "363c3fad-f404-49d2-baf4-a020ab50712c"
}
}
}
], - "id": "363c3fad-f404-49d2-baf4-a020ab50712c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyFailoverGroup",
- "relations": {
- "self": {
- "type": "failoverGroups",
- "id": "363c3fad-f404-49d2-baf4-a020ab50712c"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Failover groups
id required | string <guid> Example: 363c3fad-f404-49d2-baf4-a020ab50712c Id of the object |
description | string Description |
name | string Name |
object |
{- "description": "FailoverGroup may have a long description",
- "name": "MyFailoverGroup",
- "relations": {
- "self": {
- "type": "failoverGroups",
- "id": "363c3fad-f404-49d2-baf4-a020ab50712c"
}
}
}
{- "data": {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "FailoverGroup may have a long description",
- "displayName": "MyFailoverGroup",
- "failoverRecorders": [
- {
- "activeWebServerUri": "string",
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "databasePath": "myDatabasePath",
- "description": "FailoverRecorder may have a long description",
- "displayName": "groupLevelFailover",
- "enabled": true,
- "hostName": "servertest",
- "id": "2b0bd2b2-aac8-40f5-b723-0c309f7b02eb",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "multicastServerAddress": "0.0.0.0",
- "name": "groupLevelFailover",
- "portNumber": 7563,
- "position": 0,
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "udpPort": 1111,
- "relations": {
- "self": {
- "type": "failoverRecorders",
- "id": "2b0bd2b2-aac8-40f5-b723-0c309f7b02eb"
}, - "parent": {
- "type": "failoverGroups",
- "id": "363c3fad-f404-49d2-baf4-a020ab50712c"
}
}
}
], - "id": "363c3fad-f404-49d2-baf4-a020ab50712c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyFailoverGroup",
- "relations": {
- "self": {
- "type": "failoverGroups",
- "id": "363c3fad-f404-49d2-baf4-a020ab50712c"
}
}
}
}
Failover groups
id required | string <guid> Example: 363c3fad-f404-49d2-baf4-a020ab50712c Id of the object |
description | string Description |
name | string Name |
object |
{- "description": "FailoverGroup may have a long description",
- "name": "MyFailoverGroup",
- "relations": {
- "self": {
- "type": "failoverGroups",
- "id": "363c3fad-f404-49d2-baf4-a020ab50712c"
}
}
}
{- "data": {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "FailoverGroup may have a long description",
- "displayName": "MyFailoverGroup",
- "failoverRecorders": [
- {
- "activeWebServerUri": "string",
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "databasePath": "myDatabasePath",
- "description": "FailoverRecorder may have a long description",
- "displayName": "groupLevelFailover",
- "enabled": true,
- "hostName": "servertest",
- "id": "2b0bd2b2-aac8-40f5-b723-0c309f7b02eb",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "multicastServerAddress": "0.0.0.0",
- "name": "groupLevelFailover",
- "portNumber": 7563,
- "position": 0,
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "udpPort": 1111,
- "relations": {
- "self": {
- "type": "failoverRecorders",
- "id": "2b0bd2b2-aac8-40f5-b723-0c309f7b02eb"
}, - "parent": {
- "type": "failoverGroups",
- "id": "363c3fad-f404-49d2-baf4-a020ab50712c"
}
}
}
], - "id": "363c3fad-f404-49d2-baf4-a020ab50712c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "MyFailoverGroup",
- "relations": {
- "self": {
- "type": "failoverGroups",
- "id": "363c3fad-f404-49d2-baf4-a020ab50712c"
}
}
}
}
Failover groups
id required | string <guid> Example: 363c3fad-f404-49d2-baf4-a020ab50712c Id of the failoverGroup object |
{- "array": [
- {
- "activeWebServerUri": "string",
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "databasePath": "myDatabasePath",
- "description": "FailoverRecorder may have a long description",
- "displayName": "groupLevelFailover",
- "enabled": true,
- "hostName": "servertest",
- "id": "2b0bd2b2-aac8-40f5-b723-0c309f7b02eb",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "multicastServerAddress": "0.0.0.0",
- "name": "groupLevelFailover",
- "portNumber": 7563,
- "position": 0,
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "udpPort": 1111,
- "relations": {
- "self": {
- "type": "failoverRecorders",
- "id": "2b0bd2b2-aac8-40f5-b723-0c309f7b02eb"
}, - "parent": {
- "type": "failoverGroups",
- "id": "363c3fad-f404-49d2-baf4-a020ab50712c"
}
}
}
]
}
Failover recorders. To include disabled items add ?disabled to the request.
disabled | boolean Add this parameter to have disabled items included |
{- "array": [
- {
- "activeWebServerUri": "string",
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "databasePath": "myDatabasePath",
- "description": "FailoverRecorder may have a long description",
- "displayName": "groupLevelFailover",
- "enabled": true,
- "hostName": "servertest",
- "id": "2b0bd2b2-aac8-40f5-b723-0c309f7b02eb",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "multicastServerAddress": "0.0.0.0",
- "name": "groupLevelFailover",
- "portNumber": 7563,
- "position": 0,
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "udpPort": 1111,
- "relations": {
- "self": {
- "type": "failoverRecorders",
- "id": "2b0bd2b2-aac8-40f5-b723-0c309f7b02eb"
}, - "parent": {
- "type": "failoverGroups",
- "id": "363c3fad-f404-49d2-baf4-a020ab50712c"
}
}
}
]
}
Failover recorders
id required | string <guid> Example: 2b0bd2b2-aac8-40f5-b723-0c309f7b02eb Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "activeWebServerUri": "string",
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "databasePath": "myDatabasePath",
- "description": "FailoverRecorder may have a long description",
- "displayName": "groupLevelFailover",
- "enabled": true,
- "hostName": "servertest",
- "id": "2b0bd2b2-aac8-40f5-b723-0c309f7b02eb",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "multicastServerAddress": "0.0.0.0",
- "name": "groupLevelFailover",
- "portNumber": 7563,
- "position": 0,
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "udpPort": 1111,
- "relations": {
- "self": {
- "type": "failoverRecorders",
- "id": "2b0bd2b2-aac8-40f5-b723-0c309f7b02eb"
}, - "parent": {
- "type": "failoverGroups",
- "id": "363c3fad-f404-49d2-baf4-a020ab50712c"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Failover recorders
id required | string <guid> Example: 2b0bd2b2-aac8-40f5-b723-0c309f7b02eb Id of the object |
databasePath | string Database location. Specify the path to the database used by the failover recording server for storing recordings. You cannot change the database path while the failover recording server is taking over from a recording server. The system applies the changes when the failover recording server is no longer taking over from a recording server. |
description | string Description |
enabled | boolean |
multicastServerAddress | string Multicast server address. Multicast server address |
name | string Name |
publicAccessEnabled | boolean Public address enabled. Enable or disable the public address |
publicWebserverHostName | string Public recording server address. Public recording server address |
publicWebserverPort | integer Public recording server port. Public recording server port |
udpPort | integer Udp port. The port number used for communication between failover recording servers. Default port is 8844 |
object |
{- "databasePath": "myDatabasePath",
- "description": "FailoverRecorder may have a long description",
- "enabled": true,
- "multicastServerAddress": "0.0.0.0",
- "name": "groupLevelFailover",
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "udpPort": 1111,
- "relations": {
- "self": {
- "type": "failoverRecorders",
- "id": "2b0bd2b2-aac8-40f5-b723-0c309f7b02eb"
}, - "parent": {
- "type": "failoverGroups",
- "id": "363c3fad-f404-49d2-baf4-a020ab50712c"
}
}
}
{- "data": {
- "activeWebServerUri": "string",
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "databasePath": "myDatabasePath",
- "description": "FailoverRecorder may have a long description",
- "displayName": "groupLevelFailover",
- "enabled": true,
- "hostName": "servertest",
- "id": "2b0bd2b2-aac8-40f5-b723-0c309f7b02eb",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "multicastServerAddress": "0.0.0.0",
- "name": "groupLevelFailover",
- "portNumber": 7563,
- "position": 0,
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "udpPort": 1111,
- "relations": {
- "self": {
- "type": "failoverRecorders",
- "id": "2b0bd2b2-aac8-40f5-b723-0c309f7b02eb"
}, - "parent": {
- "type": "failoverGroups",
- "id": "363c3fad-f404-49d2-baf4-a020ab50712c"
}
}
}
}
Failover recorders
id required | string <guid> Example: 2b0bd2b2-aac8-40f5-b723-0c309f7b02eb Id of the object |
databasePath | string Database location. Specify the path to the database used by the failover recording server for storing recordings. You cannot change the database path while the failover recording server is taking over from a recording server. The system applies the changes when the failover recording server is no longer taking over from a recording server. |
description | string Description |
enabled | boolean |
multicastServerAddress | string Multicast server address. Multicast server address |
name | string Name |
publicAccessEnabled | boolean Public address enabled. Enable or disable the public address |
publicWebserverHostName | string Public recording server address. Public recording server address |
publicWebserverPort | integer Public recording server port. Public recording server port |
udpPort | integer Udp port. The port number used for communication between failover recording servers. Default port is 8844 |
object |
{- "databasePath": "myDatabasePath",
- "description": "FailoverRecorder may have a long description",
- "enabled": true,
- "multicastServerAddress": "0.0.0.0",
- "name": "groupLevelFailover",
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "udpPort": 1111,
- "relations": {
- "self": {
- "type": "failoverRecorders",
- "id": "2b0bd2b2-aac8-40f5-b723-0c309f7b02eb"
}, - "parent": {
- "type": "failoverGroups",
- "id": "363c3fad-f404-49d2-baf4-a020ab50712c"
}
}
}
{- "data": {
- "activeWebServerUri": "string",
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "databasePath": "myDatabasePath",
- "description": "FailoverRecorder may have a long description",
- "displayName": "groupLevelFailover",
- "enabled": true,
- "hostName": "servertest",
- "id": "2b0bd2b2-aac8-40f5-b723-0c309f7b02eb",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "multicastServerAddress": "0.0.0.0",
- "name": "groupLevelFailover",
- "portNumber": 7563,
- "position": 0,
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "udpPort": 1111,
- "relations": {
- "self": {
- "type": "failoverRecorders",
- "id": "2b0bd2b2-aac8-40f5-b723-0c309f7b02eb"
}, - "parent": {
- "type": "failoverGroups",
- "id": "363c3fad-f404-49d2-baf4-a020ab50712c"
}
}
}
}
Recording Server. To include disabled items add ?disabled to the request.
disabled | boolean Add this parameter to have disabled items included |
{- "array": [
- {
- "activeWebServerUri": "string",
- "description": "RecordingServer may have a long description",
- "displayName": "DKTA-0810SK0016",
- "enabled": true,
- "hardware": [
- {
- "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- null
], - "shortcut": 0,
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- null
], - "relations": {
- "self": { },
- "parent": { }
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- null
], - "relations": {
- "self": { },
- "parent": { }
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- null
], - "ptz": {
- "displayName": null,
- "pan": null,
- "ptzCenterAndZoomToRectangle": null,
- "ptzCenterOnPositionInView": null,
- "ptzCOMPort": null,
- "ptzDeviceID": null,
- "ptzDiagonalSupport": null,
- "ptzEnabled": null,
- "ptzHomeSupport": null,
- "ptzIpix": null,
- "ptzPresetConfiguration": null,
- "ptzProtocol": null,
- "tilt": null,
- "zoom": null
}, - "ptzSessionTimeouts": {
- "displayName": null,
- "manualPTZTimeout": null,
- "pausePatrollingTimeout": null,
- "reservedPTZTimeout": null
}, - "stream": [
- null
], - "relations": {
- "self": { },
- "parent": { }
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- null
], - "relations": {
- "self": { },
- "parent": { }
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Hardware may have a long description",
- "displayName": "MultiStream Hardware",
- "enabled": true,
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "hardwareDriverPath": {
- "type": "hardwareDrivers",
- "id": "699dd024-4119-4e3d-b7dd-e2b371d18d79"
}, - "hardwareDriverSettings": [
- {
- "displayName": "Settings",
- "hardwarePtz": {
- "displayName": "Pan-Tilt-Zoom",
- "ptzUsePtzDeviceID": true
}, - "relations": {
- "self": {
- "type": "hardwareDriverSettings",
- "id": "cc12d372-a0fc-4d00-a816-2894a15f11ef"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "hardwarePtzSettings": [
- {
- "displayName": "PTZ",
- "hardwarePtzDeviceSettings": [
- {
- "displayName": "Test Driver Camera 1",
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzEnabled": false,
- "ptzProtocol": "1"
}
], - "relations": {
- "self": {
- "type": "hardwarePtzSettings",
- "id": "67e0b238-efaa-4c52-bcf4-52bcb874cfbd"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "id": "965c4a97-449a-4b4b-b772-e50e7b44f700",
- "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- null
], - "relations": {
- "self": { },
- "parent": { }
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- null
], - "ptz": {
- "displayName": null,
- "pan": null,
- "ptzCenterAndZoomToRectangle": null,
- "ptzCenterOnPositionInView": null,
- "ptzCOMPort": null,
- "ptzDeviceID": null,
- "ptzDiagonalSupport": null,
- "ptzEnabled": null,
- "ptzHomeSupport": null,
- "ptzIpix": null,
- "ptzPresetConfiguration": null,
- "ptzProtocol": null,
- "tilt": null,
- "zoom": null
}, - "ptzSessionTimeouts": {
- "displayName": null,
- "manualPTZTimeout": null,
- "pausePatrollingTimeout": null,
- "reservedPTZTimeout": null
}, - "stream": [
- null
], - "relations": {
- "self": { },
- "parent": { }
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- null
], - "shortcut": 0,
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- null
], - "relations": {
- "self": { },
- "parent": { }
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- null
], - "ptz": {
- "displayName": null,
- "pan": null,
- "ptzCenterAndZoomToRectangle": null,
- "ptzCenterOnPositionInView": null,
- "ptzCOMPort": null,
- "ptzDeviceID": null,
- "ptzDiagonalSupport": null,
- "ptzEnabled": null,
- "ptzHomeSupport": null,
- "ptzIpix": null,
- "ptzPresetConfiguration": null,
- "ptzProtocol": null,
- "tilt": null,
- "zoom": null
}, - "ptzSessionTimeouts": {
- "displayName": null,
- "manualPTZTimeout": null,
- "pausePatrollingTimeout": null,
- "reservedPTZTimeout": null
}, - "stream": [
- null
], - "relations": {
- "self": { },
- "parent": { }
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- null
], - "shortcut": 0,
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- null
], - "relations": {
- "self": { },
- "parent": { }
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- null
], - "ptz": {
- "displayName": null,
- "pan": null,
- "ptzCenterAndZoomToRectangle": null,
- "ptzCenterOnPositionInView": null,
- "ptzCOMPort": null,
- "ptzDeviceID": null,
- "ptzDiagonalSupport": null,
- "ptzEnabled": null,
- "ptzHomeSupport": null,
- "ptzIpix": null,
- "ptzPresetConfiguration": null,
- "ptzProtocol": null,
- "tilt": null,
- "zoom": null
}, - "ptzSessionTimeouts": {
- "displayName": null,
- "manualPTZTimeout": null,
- "pausePatrollingTimeout": null,
- "reservedPTZTimeout": null
}, - "stream": [
- null
], - "relations": {
- "self": { },
- "parent": { }
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "model": "StableFPS_T800",
- "name": "MultiStream Hardware",
- "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- null
], - "relations": {
- "self": { },
- "parent": { }
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- null
], - "ptz": {
- "displayName": null,
- "pan": null,
- "ptzCenterAndZoomToRectangle": null,
- "ptzCenterOnPositionInView": null,
- "ptzCOMPort": null,
- "ptzDeviceID": null,
- "ptzDiagonalSupport": null,
- "ptzEnabled": null,
- "ptzHomeSupport": null,
- "ptzIpix": null,
- "ptzPresetConfiguration": null,
- "ptzProtocol": null,
- "tilt": null,
- "zoom": null
}, - "ptzSessionTimeouts": {
- "displayName": null,
- "manualPTZTimeout": null,
- "pausePatrollingTimeout": null,
- "reservedPTZTimeout": null
}, - "stream": [
- null
], - "relations": {
- "self": { },
- "parent": { }
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "passwordLastModified": "2022-05-23T09:24:58.9130000+02:00",
- "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- null
], - "shortcut": 0,
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": { },
- "parent": { }
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- null
], - "relations": {
- "self": { },
- "parent": { }
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- null
], - "ptz": {
- "displayName": null,
- "pan": null,
- "ptzCenterAndZoomToRectangle": null,
- "ptzCenterOnPositionInView": null,
- "ptzCOMPort": null,
- "ptzDeviceID": null,
- "ptzDiagonalSupport": null,
- "ptzEnabled": null,
- "ptzHomeSupport": null,
- "ptzIpix": null,
- "ptzPresetConfiguration": null,
- "ptzProtocol": null,
- "tilt": null,
- "zoom": null
}, - "ptzSessionTimeouts": {
- "displayName": null,
- "manualPTZTimeout": null,
- "pausePatrollingTimeout": null,
- "reservedPTZTimeout": null
}, - "stream": [
- null
], - "relations": {
- "self": { },
- "parent": { }
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "userName": "admin",
- "relations": {
- "self": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "hardwareDrivers": [
- {
- "displayName": "Mobotix M/D/V/S series",
- "driverRevision": "1.62",
- "driverType": "DevicePack",
- "driverVersion": "DevicePack: 13.2a, Device Pack, Build: Unknown",
- "groupName": "Mobotix",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97",
- "name": "Mobotix M/D/V/S series",
- "number": 86,
- "useCount": 0,
- "relations": {
- "self": {
- "type": "hardwareDrivers",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "hostName": "dkta-0810sk0016.ta.rd.local",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "multicastServerAddress": "0.0.0.0",
- "name": "DKTA-0810SK0016",
- "portNumber": 7563,
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "recordingServerFailovers": [
- {
- "displayName": "Failover settings",
- "failoverPort": 11000,
- "hotStandby": "FailoverRecorder[639DEDEB-FFA4-4449-8588-826061E895FF]",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9",
- "primaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "secondaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "relations": {
- "self": {
- "type": "recordingServerFailovers",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "recordingServerMulticasts": [
- {
- "displayName": "Multicast",
- "enabled": true,
- "id": "536c696f-29c3-4be8-8e35-be5720192620",
- "iPAddressEnd": "232.100.1.0",
- "iPAddressStart": "232.100.1.0",
- "MTU": "1500",
- "portRangeEnd": 47199,
- "portRangeStart": 47100,
- "TTL": "32",
- "relations": {
- "self": {
- "type": "recordingServerMulticasts",
- "id": "536c696f-29c3-4be8-8e35-be5720192620"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "shutdownOnStorageFailure": false,
- "storages": [
- {
- "archiveStorages": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "displayName": "ArchiveSchedule",
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": "archiveStorages",
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d"
}, - "parent": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}
}
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Storage may have a long description",
- "diskPath": "c:\\encryptedStorage",
- "displayName": "encryptedStorage",
- "encryptionMethod": "Light",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949",
- "isDefault": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "name": "encryptedStorage",
- "retainMinutes": 30,
- "signing": false,
- "relations": {
- "self": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "synchronizationTime": -1,
- "timeZoneName": "Romance Standard Time",
- "version": "24.2.12065.1",
- "relations": {
- "self": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
]
}
Recording Server
id required | string <guid> Example: 9f21d63b-6693-4dfc-ad0c-829f27ef9315 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "activeWebServerUri": "string",
- "description": "RecordingServer may have a long description",
- "displayName": "DKTA-0810SK0016",
- "enabled": true,
- "hardware": [
- {
- "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": null,
- "id": null
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": null,
- "order": null,
- "presetId": null,
- "waitTime": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": null,
- "displayName": null,
- "liveDefault": null,
- "liveMode": null,
- "name": null,
- "recordTo": null,
- "streamReferenceId": null,
- "useEdge": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Hardware may have a long description",
- "displayName": "MultiStream Hardware",
- "enabled": true,
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "hardwareDriverPath": {
- "type": "hardwareDrivers",
- "id": "699dd024-4119-4e3d-b7dd-e2b371d18d79"
}, - "hardwareDriverSettings": [
- {
- "displayName": "Settings",
- "hardwarePtz": {
- "displayName": "Pan-Tilt-Zoom",
- "ptzUsePtzDeviceID": true
}, - "relations": {
- "self": {
- "type": "hardwareDriverSettings",
- "id": "cc12d372-a0fc-4d00-a816-2894a15f11ef"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "hardwarePtzSettings": [
- {
- "displayName": "PTZ",
- "hardwarePtzDeviceSettings": [
- {
- "displayName": "Test Driver Camera 1",
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzEnabled": false,
- "ptzProtocol": "1"
}
], - "relations": {
- "self": {
- "type": "hardwarePtzSettings",
- "id": "67e0b238-efaa-4c52-bcf4-52bcb874cfbd"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "id": "965c4a97-449a-4b4b-b772-e50e7b44f700",
- "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": null,
- "id": null
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": null,
- "id": null
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "model": "StableFPS_T800",
- "name": "MultiStream Hardware",
- "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "passwordLastModified": "2022-05-23T09:24:58.9130000+02:00",
- "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": null,
- "id": null
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "userName": "admin",
- "relations": {
- "self": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "hardwareDrivers": [
- {
- "displayName": "Mobotix M/D/V/S series",
- "driverRevision": "1.62",
- "driverType": "DevicePack",
- "driverVersion": "DevicePack: 13.2a, Device Pack, Build: Unknown",
- "groupName": "Mobotix",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97",
- "name": "Mobotix M/D/V/S series",
- "number": 86,
- "useCount": 0,
- "relations": {
- "self": {
- "type": "hardwareDrivers",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "hostName": "dkta-0810sk0016.ta.rd.local",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "multicastServerAddress": "0.0.0.0",
- "name": "DKTA-0810SK0016",
- "portNumber": 7563,
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "recordingServerFailovers": [
- {
- "displayName": "Failover settings",
- "failoverPort": 11000,
- "hotStandby": "FailoverRecorder[639DEDEB-FFA4-4449-8588-826061E895FF]",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9",
- "primaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "secondaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "relations": {
- "self": {
- "type": "recordingServerFailovers",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "recordingServerMulticasts": [
- {
- "displayName": "Multicast",
- "enabled": true,
- "id": "536c696f-29c3-4be8-8e35-be5720192620",
- "iPAddressEnd": "232.100.1.0",
- "iPAddressStart": "232.100.1.0",
- "MTU": "1500",
- "portRangeEnd": 47199,
- "portRangeStart": 47100,
- "TTL": "32",
- "relations": {
- "self": {
- "type": "recordingServerMulticasts",
- "id": "536c696f-29c3-4be8-8e35-be5720192620"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "shutdownOnStorageFailure": false,
- "storages": [
- {
- "archiveStorages": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "displayName": "ArchiveSchedule",
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": "archiveStorages",
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d"
}, - "parent": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}
}
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Storage may have a long description",
- "diskPath": "c:\\encryptedStorage",
- "displayName": "encryptedStorage",
- "encryptionMethod": "Light",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949",
- "isDefault": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "name": "encryptedStorage",
- "retainMinutes": 30,
- "signing": false,
- "relations": {
- "self": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "synchronizationTime": -1,
- "timeZoneName": "Romance Standard Time",
- "version": "24.2.12065.1",
- "relations": {
- "self": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Recording Server
id required | string <guid> Example: 9f21d63b-6693-4dfc-ad0c-829f27ef9315 Id of the object |
description | string Description |
enabled | boolean |
multicastServerAddress | string Multicast server address. Multicast server address |
name | string Name |
publicAccessEnabled | boolean Public address enabled. Enable or disable the public address |
publicWebserverHostName | string Public recording server address. Public recording server address |
publicWebserverPort | integer Public recording server port. Public recording server port |
shutdownOnStorageFailure | boolean Shutdown on storage failure. Shutdown on storage failure |
synchronizationTime | integer Synchronization time. Defines when the configuration is synchronized with the hardware. Define when to start the synchronization by entering a number of minutes after midnight (local time of recording server). The default value is -1, which means no synchronization. |
object |
{- "description": "RecordingServer may have a long description",
- "enabled": true,
- "multicastServerAddress": "0.0.0.0",
- "name": "DKTA-0810SK0016",
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "shutdownOnStorageFailure": false,
- "synchronizationTime": -1,
- "relations": {
- "self": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
{- "data": {
- "activeWebServerUri": "string",
- "description": "RecordingServer may have a long description",
- "displayName": "DKTA-0810SK0016",
- "enabled": true,
- "hardware": [
- {
- "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": null,
- "id": null
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": null,
- "order": null,
- "presetId": null,
- "waitTime": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": null,
- "displayName": null,
- "liveDefault": null,
- "liveMode": null,
- "name": null,
- "recordTo": null,
- "streamReferenceId": null,
- "useEdge": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Hardware may have a long description",
- "displayName": "MultiStream Hardware",
- "enabled": true,
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "hardwareDriverPath": {
- "type": "hardwareDrivers",
- "id": "699dd024-4119-4e3d-b7dd-e2b371d18d79"
}, - "hardwareDriverSettings": [
- {
- "displayName": "Settings",
- "hardwarePtz": {
- "displayName": "Pan-Tilt-Zoom",
- "ptzUsePtzDeviceID": true
}, - "relations": {
- "self": {
- "type": "hardwareDriverSettings",
- "id": "cc12d372-a0fc-4d00-a816-2894a15f11ef"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "hardwarePtzSettings": [
- {
- "displayName": "PTZ",
- "hardwarePtzDeviceSettings": [
- {
- "displayName": "Test Driver Camera 1",
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzEnabled": false,
- "ptzProtocol": "1"
}
], - "relations": {
- "self": {
- "type": "hardwarePtzSettings",
- "id": "67e0b238-efaa-4c52-bcf4-52bcb874cfbd"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "id": "965c4a97-449a-4b4b-b772-e50e7b44f700",
- "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": null,
- "id": null
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": null,
- "id": null
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "model": "StableFPS_T800",
- "name": "MultiStream Hardware",
- "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "passwordLastModified": "2022-05-23T09:24:58.9130000+02:00",
- "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": null,
- "id": null
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "userName": "admin",
- "relations": {
- "self": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "hardwareDrivers": [
- {
- "displayName": "Mobotix M/D/V/S series",
- "driverRevision": "1.62",
- "driverType": "DevicePack",
- "driverVersion": "DevicePack: 13.2a, Device Pack, Build: Unknown",
- "groupName": "Mobotix",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97",
- "name": "Mobotix M/D/V/S series",
- "number": 86,
- "useCount": 0,
- "relations": {
- "self": {
- "type": "hardwareDrivers",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "hostName": "dkta-0810sk0016.ta.rd.local",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "multicastServerAddress": "0.0.0.0",
- "name": "DKTA-0810SK0016",
- "portNumber": 7563,
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "recordingServerFailovers": [
- {
- "displayName": "Failover settings",
- "failoverPort": 11000,
- "hotStandby": "FailoverRecorder[639DEDEB-FFA4-4449-8588-826061E895FF]",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9",
- "primaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "secondaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "relations": {
- "self": {
- "type": "recordingServerFailovers",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "recordingServerMulticasts": [
- {
- "displayName": "Multicast",
- "enabled": true,
- "id": "536c696f-29c3-4be8-8e35-be5720192620",
- "iPAddressEnd": "232.100.1.0",
- "iPAddressStart": "232.100.1.0",
- "MTU": "1500",
- "portRangeEnd": 47199,
- "portRangeStart": 47100,
- "TTL": "32",
- "relations": {
- "self": {
- "type": "recordingServerMulticasts",
- "id": "536c696f-29c3-4be8-8e35-be5720192620"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "shutdownOnStorageFailure": false,
- "storages": [
- {
- "archiveStorages": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "displayName": "ArchiveSchedule",
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": "archiveStorages",
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d"
}, - "parent": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}
}
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Storage may have a long description",
- "diskPath": "c:\\encryptedStorage",
- "displayName": "encryptedStorage",
- "encryptionMethod": "Light",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949",
- "isDefault": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "name": "encryptedStorage",
- "retainMinutes": 30,
- "signing": false,
- "relations": {
- "self": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "synchronizationTime": -1,
- "timeZoneName": "Romance Standard Time",
- "version": "24.2.12065.1",
- "relations": {
- "self": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
}
Recording Server
id required | string <guid> Example: 9f21d63b-6693-4dfc-ad0c-829f27ef9315 Id of the object |
description | string Description |
enabled | boolean |
multicastServerAddress | string Multicast server address. Multicast server address |
name | string Name |
publicAccessEnabled | boolean Public address enabled. Enable or disable the public address |
publicWebserverHostName | string Public recording server address. Public recording server address |
publicWebserverPort | integer Public recording server port. Public recording server port |
shutdownOnStorageFailure | boolean Shutdown on storage failure. Shutdown on storage failure |
synchronizationTime | integer Synchronization time. Defines when the configuration is synchronized with the hardware. Define when to start the synchronization by entering a number of minutes after midnight (local time of recording server). The default value is -1, which means no synchronization. |
object |
{- "description": "RecordingServer may have a long description",
- "enabled": true,
- "multicastServerAddress": "0.0.0.0",
- "name": "DKTA-0810SK0016",
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "shutdownOnStorageFailure": false,
- "synchronizationTime": -1,
- "relations": {
- "self": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
{- "data": {
- "activeWebServerUri": "string",
- "description": "RecordingServer may have a long description",
- "displayName": "DKTA-0810SK0016",
- "enabled": true,
- "hardware": [
- {
- "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": null,
- "id": null
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": null,
- "order": null,
- "presetId": null,
- "waitTime": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": null,
- "displayName": null,
- "liveDefault": null,
- "liveMode": null,
- "name": null,
- "recordTo": null,
- "streamReferenceId": null,
- "useEdge": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Hardware may have a long description",
- "displayName": "MultiStream Hardware",
- "enabled": true,
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "hardwareDriverPath": {
- "type": "hardwareDrivers",
- "id": "699dd024-4119-4e3d-b7dd-e2b371d18d79"
}, - "hardwareDriverSettings": [
- {
- "displayName": "Settings",
- "hardwarePtz": {
- "displayName": "Pan-Tilt-Zoom",
- "ptzUsePtzDeviceID": true
}, - "relations": {
- "self": {
- "type": "hardwareDriverSettings",
- "id": "cc12d372-a0fc-4d00-a816-2894a15f11ef"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "hardwarePtzSettings": [
- {
- "displayName": "PTZ",
- "hardwarePtzDeviceSettings": [
- {
- "displayName": "Test Driver Camera 1",
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzEnabled": false,
- "ptzProtocol": "1"
}
], - "relations": {
- "self": {
- "type": "hardwarePtzSettings",
- "id": "67e0b238-efaa-4c52-bcf4-52bcb874cfbd"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "id": "965c4a97-449a-4b4b-b772-e50e7b44f700",
- "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": null,
- "id": null
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": null,
- "id": null
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "model": "StableFPS_T800",
- "name": "MultiStream Hardware",
- "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "passwordLastModified": "2022-05-23T09:24:58.9130000+02:00",
- "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": null,
- "id": null
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": null,
- "edgeStorageEnabled": null,
- "edgeStorageStreamIndex": null
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": null,
- "edgeStorageSupported": null,
- "resolution": null,
- "streamReferenceId": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "userName": "admin",
- "relations": {
- "self": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "hardwareDrivers": [
- {
- "displayName": "Mobotix M/D/V/S series",
- "driverRevision": "1.62",
- "driverType": "DevicePack",
- "driverVersion": "DevicePack: 13.2a, Device Pack, Build: Unknown",
- "groupName": "Mobotix",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97",
- "name": "Mobotix M/D/V/S series",
- "number": 86,
- "useCount": 0,
- "relations": {
- "self": {
- "type": "hardwareDrivers",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "hostName": "dkta-0810sk0016.ta.rd.local",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "multicastServerAddress": "0.0.0.0",
- "name": "DKTA-0810SK0016",
- "portNumber": 7563,
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "recordingServerFailovers": [
- {
- "displayName": "Failover settings",
- "failoverPort": 11000,
- "hotStandby": "FailoverRecorder[639DEDEB-FFA4-4449-8588-826061E895FF]",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9",
- "primaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "secondaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "relations": {
- "self": {
- "type": "recordingServerFailovers",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "recordingServerMulticasts": [
- {
- "displayName": "Multicast",
- "enabled": true,
- "id": "536c696f-29c3-4be8-8e35-be5720192620",
- "iPAddressEnd": "232.100.1.0",
- "iPAddressStart": "232.100.1.0",
- "MTU": "1500",
- "portRangeEnd": 47199,
- "portRangeStart": 47100,
- "TTL": "32",
- "relations": {
- "self": {
- "type": "recordingServerMulticasts",
- "id": "536c696f-29c3-4be8-8e35-be5720192620"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "shutdownOnStorageFailure": false,
- "storages": [
- {
- "archiveStorages": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "displayName": "ArchiveSchedule",
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": "archiveStorages",
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d"
}, - "parent": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}
}
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Storage may have a long description",
- "diskPath": "c:\\encryptedStorage",
- "displayName": "encryptedStorage",
- "encryptionMethod": "Light",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949",
- "isDefault": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "name": "encryptedStorage",
- "retainMinutes": 30,
- "signing": false,
- "relations": {
- "self": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "synchronizationTime": -1,
- "timeZoneName": "Romance Standard Time",
- "version": "24.2.12065.1",
- "relations": {
- "self": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
}
Recording Server
id required | string <guid> Example: 9f21d63b-6693-4dfc-ad0c-829f27ef9315 Id of the object |
task required | string Example: task=CreateDirectoryOnRecorder task=AddHardware, or task=GetOtherDevicesWithMediaOnRecorder, or task=HardwareScan, or task=HardwareScanExpress, or task=LoadTasks, or task=ReadDrivesOnRecorder, or task=ReadDirectoriesOnRecorder, or task=CreateDirectoryOnRecorder AddHardware - Add new hardware. Be aware that newly added hardware, and the devices it contains, will be disabled initially. GetOtherDevicesWithMediaOnRecorder - Get devices with media on recording server HardwareScan - Detect hardware driver HardwareScanExpress - Detect hardware LoadTasks - Load the tasks existing on the server ReadDrivesOnRecorder - Read drives on recorder ReadDirectoriesOnRecorder - Read directories on recorder CreateDirectoryOnRecorder - Create directory on recorder |
customData | string Custom data. Data to be passed on to driver during add hardware process |
hardwareAddress | string Address. The base address of the hardware. If the property HttpsEnabled exists in the general settings of this hardware and has the value Yes, the address should be modified to use HTTPS and the port defined in the property named HttpsPort under general settings. |
hardwareDriverPath | string Hardware driver. Contains the path/ID of the device driver used for the hardware. Driver can be looked up under the recording server. |
password | string <password> Password. Password for hardware |
userName | string User name. User name for the hardware |
{- "customData": "string",
- "hardwareAddress": "string",
- "hardwareDriverPath": "string",
- "password": "pa$$word",
- "userName": "string"
}
{- "result": {
- "customData": "string",
- "displayName": "DKTA-0810SK0016",
- "enabled": true,
- "hardwareAddress": "string",
- "hardwareDriverPath": {
- "type": "hardwareDrivers",
- "id": "699dd024-4119-4e3d-b7dd-e2b371d18d79"
}, - "password": "string",
- "userName": "string"
}
}
Recording Server
id required | string <guid> Example: 9f21d63b-6693-4dfc-ad0c-829f27ef9315 Id of the recordingServer object |
{- "array": [
- {
- "displayName": "Mobotix M/D/V/S series",
- "driverRevision": "1.62",
- "driverType": "DevicePack",
- "driverVersion": "DevicePack: 13.2a, Device Pack, Build: Unknown",
- "groupName": "Mobotix",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97",
- "name": "Mobotix M/D/V/S series",
- "number": 86,
- "useCount": 0,
- "relations": {
- "self": {
- "type": "hardwareDrivers",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
]
}
Recording Server
idParent required | string <guid> Example: 9f21d63b-6693-4dfc-ad0c-829f27ef9315 Id of the recordingServer object |
id required | string <guid> Example: 9f21d63b-6693-4dfc-ad0c-829f27ef9315 Id of the hardwareDriver object |
{- "array": [
- {
- "displayName": "Mobotix M/D/V/S series",
- "driverRevision": "1.62",
- "driverType": "DevicePack",
- "driverVersion": "DevicePack: 13.2a, Device Pack, Build: Unknown",
- "groupName": "Mobotix",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97",
- "name": "Mobotix M/D/V/S series",
- "number": 86,
- "useCount": 0,
- "relations": {
- "self": {
- "type": "hardwareDrivers",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
]
}
Recording Server
id required | string <guid> Example: 9f21d63b-6693-4dfc-ad0c-829f27ef9315 Id of the recordingServer object |
{- "array": [
- {
- "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": "fisheyeLens",
- "id": "d0ae3832-344b-4886-a699-3a74d2465a85"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": "motionDetections",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": "privacyProtections",
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": "ptzPresets",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": true,
- "displayName": "Video stream 1",
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Hardware may have a long description",
- "displayName": "MultiStream Hardware",
- "enabled": true,
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "hardwareDriverPath": {
- "type": "hardwareDrivers",
- "id": "699dd024-4119-4e3d-b7dd-e2b371d18d79"
}, - "hardwareDriverSettings": [
- {
- "displayName": "Settings",
- "hardwarePtz": {
- "displayName": "Pan-Tilt-Zoom",
- "ptzUsePtzDeviceID": true
}, - "relations": {
- "self": {
- "type": "hardwareDriverSettings",
- "id": "cc12d372-a0fc-4d00-a816-2894a15f11ef"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "hardwarePtzSettings": [
- {
- "displayName": "PTZ",
- "hardwarePtzDeviceSettings": [
- {
- "displayName": "Test Driver Camera 1",
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzEnabled": false,
- "ptzProtocol": "1"
}
], - "relations": {
- "self": {
- "type": "hardwarePtzSettings",
- "id": "67e0b238-efaa-4c52-bcf4-52bcb874cfbd"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "id": "965c4a97-449a-4b4b-b772-e50e7b44f700",
- "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "model": "StableFPS_T800",
- "name": "MultiStream Hardware",
- "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "passwordLastModified": "2022-05-23T09:24:58.9130000+02:00",
- "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "userName": "admin",
- "relations": {
- "self": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
]
}
Recording Server
id required | string <guid> Example: 9f21d63b-6693-4dfc-ad0c-829f27ef9315 Id of the recordingServer object |
{- "array": [
- {
- "displayName": "Failover settings",
- "failoverPort": 11000,
- "hotStandby": "FailoverRecorder[639DEDEB-FFA4-4449-8588-826061E895FF]",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9",
- "primaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "secondaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "relations": {
- "self": {
- "type": "recordingServerFailovers",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
]
}
Recording Server
idParent required | string <guid> Example: 9f21d63b-6693-4dfc-ad0c-829f27ef9315 Id of the recordingServer object |
id required | string <guid> Example: 9f21d63b-6693-4dfc-ad0c-829f27ef9315 Id of the recordingServerFailover object |
{- "array": [
- {
- "displayName": "Failover settings",
- "failoverPort": 11000,
- "hotStandby": "FailoverRecorder[639DEDEB-FFA4-4449-8588-826061E895FF]",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9",
- "primaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "secondaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "relations": {
- "self": {
- "type": "recordingServerFailovers",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
]
}
Recording Server
id required | string <guid> Example: 9f21d63b-6693-4dfc-ad0c-829f27ef9315 Id of the recordingServer object |
{- "array": [
- {
- "displayName": "Multicast",
- "enabled": true,
- "id": "536c696f-29c3-4be8-8e35-be5720192620",
- "iPAddressEnd": "232.100.1.0",
- "iPAddressStart": "232.100.1.0",
- "MTU": "1500",
- "portRangeEnd": 47199,
- "portRangeStart": 47100,
- "TTL": "32",
- "relations": {
- "self": {
- "type": "recordingServerMulticasts",
- "id": "536c696f-29c3-4be8-8e35-be5720192620"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
]
}
Recording Server
idParent required | string <guid> Example: 9f21d63b-6693-4dfc-ad0c-829f27ef9315 Id of the recordingServer object |
id required | string <guid> Example: 9f21d63b-6693-4dfc-ad0c-829f27ef9315 Id of the recordingServerMulticast object |
{- "array": [
- {
- "displayName": "Multicast",
- "enabled": true,
- "id": "536c696f-29c3-4be8-8e35-be5720192620",
- "iPAddressEnd": "232.100.1.0",
- "iPAddressStart": "232.100.1.0",
- "MTU": "1500",
- "portRangeEnd": 47199,
- "portRangeStart": 47100,
- "TTL": "32",
- "relations": {
- "self": {
- "type": "recordingServerMulticasts",
- "id": "536c696f-29c3-4be8-8e35-be5720192620"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
]
}
Recording Server
id required | string <guid> Example: 9f21d63b-6693-4dfc-ad0c-829f27ef9315 Id of the recordingServer object |
{- "array": [
- {
- "archiveStorages": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "displayName": "ArchiveSchedule",
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": "archiveStorages",
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d"
}, - "parent": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}
}
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Storage may have a long description",
- "diskPath": "c:\\encryptedStorage",
- "displayName": "encryptedStorage",
- "encryptionMethod": "Light",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949",
- "isDefault": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "name": "encryptedStorage",
- "retainMinutes": 30,
- "signing": false,
- "relations": {
- "self": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
]
}
Recording Server
id required | string <guid> Example: 9f21d63b-6693-4dfc-ad0c-829f27ef9315 Id of the recordingServer object |
description | string Description |
maxSize | integer Max size (in MB). The maximum size of the recording storage in MB. The value have to be between 1 and 1099511627776 (1 exabyte). By default, the value is set to 1024, which is 1 GB. |
name | string Name |
retainMinutes | integer Retention time. The number of minutes that must elapse before data are deleted or archived. The value that specifies the retention period in minutes. The value have to be between 1 and 525600000 (365000 days). By default, the value is 1440, which is 1 day. |
signing | boolean Signing. Specifies if database should be signed |
object |
{- "description": "Storage may have a long description",
- "maxSize": 1024,
- "name": "encryptedStorage",
- "retainMinutes": 30,
- "signing": false,
- "relations": {
- "self": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
{- "result": {
- "archiveStorages": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "displayName": "ArchiveSchedule",
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": "archiveStorages",
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d"
}, - "parent": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}
}
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Storage may have a long description",
- "diskPath": "c:\\encryptedStorage",
- "displayName": "encryptedStorage",
- "encryptionMethod": "Light",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949",
- "isDefault": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "name": "encryptedStorage",
- "retainMinutes": 30,
- "signing": false,
- "relations": {
- "self": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
}
Recording Server
id required | string <guid> Example: 9f21d63b-6693-4dfc-ad0c-829f27ef9315 Id of the recordingServer object |
{- "array": [
- {
- "result": {
- "progress": "25",
- "errorCode": "61002",
- "errorText": "Something went wrong",
- "state": "Error",
- "path": "hardware/F29FEF78-E5EA-4DCF-B654-8F76886DD873"
}
}
]
}
Recording Server
idParent required | string <guid> Example: 9f21d63b-6693-4dfc-ad0c-829f27ef9315 Id of parent object |
id required | string <guid> Example: 9f21d63b-6693-4dfc-ad0c-829f27ef9315 Id of the object |
{- "state": "Success"
}
Recording Server
idParent required | string <guid> Example: 9f21d63b-6693-4dfc-ad0c-829f27ef9315 Id of parent object |
id required | string <guid> Example: 9f21d63b-6693-4dfc-ad0c-829f27ef9315 Id of the object |
{- "state": "Success"
}
Get specific object of Storage
id required | string <guid> Example: f1e406c5-2da8-47cd-8b1c-9a2f8db33949 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "archiveStorages": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "displayName": "ArchiveSchedule",
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": "archiveStorages",
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d"
}, - "parent": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}
}
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Storage may have a long description",
- "diskPath": "c:\\encryptedStorage",
- "displayName": "encryptedStorage",
- "encryptionMethod": "Light",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949",
- "isDefault": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "name": "encryptedStorage",
- "retainMinutes": 30,
- "signing": false,
- "relations": {
- "self": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Update all fields on Storage
id required | string <guid> Example: f1e406c5-2da8-47cd-8b1c-9a2f8db33949 Id of the object |
description | string Description |
maxSize | integer Max size (in MB). The maximum size of the recording storage in MB. The value have to be between 1 and 1099511627776 (1 exabyte). By default, the value is set to 1024, which is 1 GB. |
name | string Name |
retainMinutes | integer Retention time. The number of minutes that must elapse before data are deleted or archived. The value that specifies the retention period in minutes. The value have to be between 1 and 525600000 (365000 days). By default, the value is 1440, which is 1 day. |
signing | boolean Signing. Specifies if database should be signed |
object |
{- "description": "Storage may have a long description",
- "maxSize": 1024,
- "name": "encryptedStorage",
- "retainMinutes": 30,
- "signing": false,
- "relations": {
- "self": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
{- "data": {
- "archiveStorages": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "displayName": "ArchiveSchedule",
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": "archiveStorages",
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d"
}, - "parent": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}
}
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Storage may have a long description",
- "diskPath": "c:\\encryptedStorage",
- "displayName": "encryptedStorage",
- "encryptionMethod": "Light",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949",
- "isDefault": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "name": "encryptedStorage",
- "retainMinutes": 30,
- "signing": false,
- "relations": {
- "self": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
}
Update provided fields on Storage
id required | string <guid> Example: f1e406c5-2da8-47cd-8b1c-9a2f8db33949 Id of the object |
description | string Description |
maxSize | integer Max size (in MB). The maximum size of the recording storage in MB. The value have to be between 1 and 1099511627776 (1 exabyte). By default, the value is set to 1024, which is 1 GB. |
name | string Name |
retainMinutes | integer Retention time. The number of minutes that must elapse before data are deleted or archived. The value that specifies the retention period in minutes. The value have to be between 1 and 525600000 (365000 days). By default, the value is 1440, which is 1 day. |
signing | boolean Signing. Specifies if database should be signed |
object |
{- "description": "Storage may have a long description",
- "maxSize": 1024,
- "name": "encryptedStorage",
- "retainMinutes": 30,
- "signing": false,
- "relations": {
- "self": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
{- "data": {
- "archiveStorages": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "displayName": "ArchiveSchedule",
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": "archiveStorages",
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d"
}, - "parent": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}
}
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Storage may have a long description",
- "diskPath": "c:\\encryptedStorage",
- "displayName": "encryptedStorage",
- "encryptionMethod": "Light",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949",
- "isDefault": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "name": "encryptedStorage",
- "retainMinutes": 30,
- "signing": false,
- "relations": {
- "self": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
}
Perform a task
id required | string <guid> Example: f1e406c5-2da8-47cd-8b1c-9a2f8db33949 Id of the object |
task required | string Example: task=ChangePasswordStorageEncryption task=GetDevicesUsingStorage, or task=SetStorageAsDefault, or task=EnableEncryption, or task=MoveRecordingStorage, or task=ChangeEncryptionMethod, or task=ValidateStorageEncryptionPassword, or task=DisableEncryption, or task=ChangePasswordStorageEncryption GetDevicesUsingStorage - Get devices using this storage SetStorageAsDefault - Set storage as default EnableEncryption - Enable encryption on recording storage MoveRecordingStorage - Move storage ChangeEncryptionMethod - Change encryption method ValidateStorageEncryptionPassword - Validate encryption password on recording storage DisableEncryption - Disable encryption on recording storage ChangePasswordStorageEncryption - Change encryption password for recording storage |
encryptionMethod | string Encryption. Specifies the strength of the encryption |
password | string <password> Encryption password. Encryption password for recording storage |
{- "encryptionMethod": "string",
- "password": "pa$$word"
}
{- "result": {
- "state": "Success",
- "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": "Fisheye Lens",
- "enabled": true,
- "fisheyeFieldOfView": 180,
- "orientation": "Ceiling",
- "registeredPanomorphLens": "0",
- "registeredPanomorphLensNumber": "Generic",
- "relations": {
- "self": {
- "type": "fisheyeLens",
- "id": "d0ae3832-344b-4886-a699-3a74d2465a85"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": "Fast",
- "displayName": "Motion detection",
- "enabled": true,
- "excludeRegions": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "generateMotionMetadata": true,
- "gridSize": "Grid16X16",
- "hardwareAccelerationMode": "Automatic",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293",
- "keyframesOnly": true,
- "manualSensitivity": 100,
- "manualSensitivityEnabled": false,
- "processTime": "Ms500",
- "threshold": 2000,
- "useExcludeRegions": false,
- "relations": {
- "self": {
- "type": "motionDetections",
- "id": "87b0798f-0c37-4120-86db-aab5a2e7c293"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": false,
- "description": "PatrollingProfile may have a long description",
- "displayName": "Profile 1",
- "endPresetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "efc9e3f4-20fe-4dcf-abd1-176d43cd74ab",
- "waitTime": 5
}
], - "relations": {
- "self": {
- "type": "patrollingProfiles",
- "id": "0592c885-be06-4b65-b058-0118c873b733"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": "Privacy masking",
- "enabled": true,
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6",
- "privacyMaskXml": "string",
- "relations": {
- "self": {
- "type": "privacyProtections",
- "id": "8dbdeb9f-0ed8-4e15-818e-f197d0d0e8d6"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": false,
- "description": "PtzPreset may have a long description",
- "devicePreset": false,
- "devicePresetInternalId": "string",
- "displayName": "Ptz Preset 1",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1",
- "locked": false,
- "name": "Ptz Preset 1",
- "pan": 0.1,
- "tilt": 0.2,
- "zoom": 0.3,
- "relations": {
- "self": {
- "type": "ptzPresets",
- "id": "ae4b8747-b4dd-4d0d-973c-7b5f3db4c5c1"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": "Video stream 1",
- "stream": [
- {
- "defaultPlayback": true,
- "displayName": "Video stream 1",
- "liveDefault": true,
- "liveMode": "WhenNeeded",
- "name": "Video stream 1",
- "recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40",
- "useEdge": true
}
], - "relations": {
- "self": {
- "type": "streams",
- "id": "e2537088-a892-43d8-885d-a454b5f98869"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "relations": {
- "self": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "microphones",
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "speakers",
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": "Client settings",
- "multicastEnabled": false,
- "related": [
- {
- "type": "metadata",
- "id": "401f4df8-bbdc-43c7-8947-6ca1170ff4c8"
}
], - "shortcut": 0,
- "relations": {
- "self": {
- "type": "clientSettings",
- "id": "197be82c-36f1-4a69-8220-492a24f328d5"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "metadata",
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "inputEvents",
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": {
- "self": {
- "type": "customProperties",
- "id": "ca65907a-7209-42d8-bab4-a05447670dc7"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": "hardwareDeviceEvents",
- "id": "0d13e292-075b-4e14-a375-3c9ba7d017ac"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": "General",
- "generalSettings": [
- {
- "displayName": "General",
- "edgeStorageEnabled": "True",
- "edgeStorageStreamIndex": 0
}
], - "ptz": {
- "displayName": "Pan-Tilt-Zoom",
- "pan": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "ptzCenterAndZoomToRectangle": true,
- "ptzCenterOnPositionInView": true,
- "ptzCOMPort": 1,
- "ptzDeviceID": 1,
- "ptzDiagonalSupport": true,
- "ptzEnabled": true,
- "ptzHomeSupport": true,
- "ptzIpix": false,
- "ptzPresetConfiguration": "<ptzpresets>\n <presettype>both</presettype>\n <internal>\n <isnumbered>false</isnumbered>\n <minnumber>0</minnumber>\n <maxnumber>255</maxnumber>\n <formatexpression>(.*)</formatexpression> <canloadfromdevice>true</canloadfromdevice>\n <cansetpreset>true</cansetpreset>\n <speedsupport>true</speedsupport>\n </internal>\n <absolute> \n <canqueryposition>true</canqueryposition>\n <speedsupport>true</speedsupport>\n </absolute>\n</ptzpresets>\n",
- "ptzProtocol": "1",
- "tilt": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n",
- "zoom": "<control>\n <absolutesupport>true</absolutesupport>\n <relativesupport>true</relativesupport>\n <stopsupport>true</stopsupport>\n <startsupport>true</startsupport>\n <automaticsupport>true</automaticsupport>\n <speedsupport>true</speedsupport>\n</control>\n \n"
}, - "ptzSessionTimeouts": {
- "displayName": "PTZ Session Timeouts",
- "manualPTZTimeout": -1,
- "pausePatrollingTimeout": -1,
- "reservedPTZTimeout": -1
}, - "stream": [
- {
- "displayName": "Video stream 1",
- "edgeStorageSupported": "True",
- "resolution": "1280x720",
- "streamReferenceId": "28DC44C3-079E-4C94-8EC9-60363451EB40"
}
], - "relations": {
- "self": {
- "type": "settings",
- "id": "5cce248d-79a0-453f-ae39-4b85ec0a5d98"
}, - "parent": {
- "type": "cameras",
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": "outputs",
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0"
}, - "parent": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}
}
}
], - "storages": [
- {
- "archiveStorages": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "displayName": "ArchiveSchedule",
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": "archiveStorages",
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d"
}, - "parent": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}
}
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Storage may have a long description",
- "diskPath": "c:\\encryptedStorage",
- "displayName": "encryptedStorage",
- "encryptionMethod": "Light",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949",
- "isDefault": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "name": "encryptedStorage",
- "retainMinutes": 30,
- "signing": false,
- "relations": {
- "self": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "recordingServers": [
- {
- "activeWebServerUri": "string",
- "description": "RecordingServer may have a long description",
- "displayName": "DKTA-0810SK0016",
- "enabled": true,
- "hardware": [
- {
- "cameras": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 33,
- "coverageDirection": 0.6,
- "coverageFieldOfView": 1,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Camera may have a long description",
- "displayName": "MultiStream Camera",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "fisheyeLens": [
- {
- "displayName": null,
- "enabled": null,
- "fisheyeFieldOfView": null,
- "orientation": null,
- "registeredPanomorphLens": null,
- "registeredPanomorphLensNumber": null,
- "relations": { }
}
], - "gisPoint": "POINT (12.3773200400488 55.6580462362318)",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "motionDetections": [
- {
- "detectionMethod": null,
- "displayName": null,
- "enabled": null,
- "excludeRegions": null,
- "generateMotionMetadata": null,
- "gridSize": null,
- "hardwareAccelerationMode": null,
- "id": null,
- "keyframesOnly": null,
- "manualSensitivity": null,
- "manualSensitivityEnabled": null,
- "processTime": null,
- "threshold": null,
- "useExcludeRegions": null,
- "relations": { }
}
], - "name": "MultiStream Camera",
- "patrollingProfiles": [
- {
- "customizeTransitions": null,
- "description": null,
- "displayName": null,
- "endPresetId": null,
- "endSpeed": null,
- "endTransitionTime": null,
- "id": null,
- "initSpeed": null,
- "initTransitionTime": null,
- "name": null,
- "patrollingEntry": [ ],
- "relations": { }
}
], - "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "privacyProtections": [
- {
- "displayName": null,
- "enabled": null,
- "id": null,
- "privacyMaskXml": null,
- "relations": { }
}
], - "ptzEnabled": false,
- "ptzPresets": [
- {
- "defaultPreset": null,
- "description": null,
- "devicePreset": null,
- "devicePresetInternalId": null,
- "displayName": null,
- "id": null,
- "locked": null,
- "name": null,
- "pan": null,
- "tilt": null,
- "zoom": null,
- "relations": { }
}
], - "recordingEnabled": true,
- "recordingFramerate": 5,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "recordKeyframesOnly": false,
- "recordOnRelatedDevices": true,
- "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "streams": [
- {
- "displayName": null,
- "stream": [ ],
- "relations": { }
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "customProperties": [
- {
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "description": "Hardware may have a long description",
- "displayName": "MultiStream Hardware",
- "enabled": true,
- "hardwareDeviceEvents": [
- {
- "displayName": "Hardware device events",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "hardwareDeviceEvents": [
- { }
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "hardwareDriverPath": {
- "type": "hardwareDrivers",
- "id": "699dd024-4119-4e3d-b7dd-e2b371d18d79"
}, - "hardwareDriverSettings": [
- {
- "displayName": "Settings",
- "hardwarePtz": {
- "displayName": "Pan-Tilt-Zoom",
- "ptzUsePtzDeviceID": true
}, - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "hardwarePtzSettings": [
- {
- "displayName": "PTZ",
- "hardwarePtzDeviceSettings": [
- {
- "displayName": null,
- "ptzCOMPort": null,
- "ptzDeviceID": null,
- "ptzEnabled": null,
- "ptzProtocol": null
}
], - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "id": "965c4a97-449a-4b4b-b772-e50e7b44f700",
- "inputEvents": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "InputEvent may have a long description",
- "displayName": "Test Driver Input 1",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "1ee97b92-664b-4841-860a-b9d53b158d00",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Test Driver Input 1",
- "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "metadata": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Metadata may have a long description",
- "displayName": "Test Driver Metadata 1",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "5eb4ff4a-d570-4440-91a8-faee8b1ba205",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Test Driver Metadata 1",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "microphones": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Microphone may have a long description",
- "displayName": "Bunny Microphone",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "2a0fa0e1-129f-4f66-be7a-9f1c190bfd3c",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Microphone",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "model": "StableFPS_T800",
- "name": "MultiStream Hardware",
- "outputs": [
- {
- "channel": 0,
- "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Output may have a long description",
- "displayName": "Bunny Output",
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "2d6e053a-6e1b-462b-81ec-a2c3d54148c0",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "name": "Bunny Output",
- "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "passwordLastModified": "2022-05-23T09:24:58.9130000+02:00",
- "speakers": [
- {
- "channel": 0,
- "clientSettings": [
- {
- "displayName": null,
- "multicastEnabled": null,
- "related": [ ],
- "shortcut": null,
- "relations": { }
}
], - "coverageDepth": 0,
- "coverageDirection": 0,
- "coverageFieldOfView": 0,
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "customProperties": [
- {
- "relations": { }
}
], - "description": "Speaker may have a long description",
- "displayName": "Bunny Speaker",
- "edgeStorageEnabled": false,
- "edgeStoragePlaybackEnabled": false,
- "enabled": true,
- "gisPoint": "POINT EMPTY",
- "hardwareDeviceEvents": [
- {
- "displayName": null,
- "lastModified": null,
- "hardwareDeviceEvents": [ ],
- "relations": { }
}
], - "icon": 0,
- "id": "f8d828d4-f2fc-4ee1-a7d9-f9bd2c275bd7",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "manualRecordingTimeoutEnabled": true,
- "manualRecordingTimeoutMinutes": 5,
- "name": "Bunny Speaker",
- "prebufferEnabled": true,
- "prebufferInMemory": true,
- "prebufferSeconds": 3,
- "recordingEnabled": true,
- "recordingStorage": {
- "type": "storages",
- "id": "2f947aeb-c59d-4ea6-9586-c4cf72e3f477"
}, - "settings": [
- {
- "displayName": null,
- "generalSettings": [ ],
- "ptz": null,
- "ptzSessionTimeouts": null,
- "stream": [ ],
- "relations": { }
}
], - "shortName": "string",
- "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "userName": "admin",
- "relations": {
- "self": {
- "type": "hardware",
- "id": "965c4a97-449a-4b4b-b772-e50e7b44f700"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "hardwareDrivers": [
- {
- "displayName": "Mobotix M/D/V/S series",
- "driverRevision": "1.62",
- "driverType": "DevicePack",
- "driverVersion": "DevicePack: 13.2a, Device Pack, Build: Unknown",
- "groupName": "Mobotix",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97",
- "name": "Mobotix M/D/V/S series",
- "number": 86,
- "useCount": 0,
- "relations": {
- "self": {
- "type": "hardwareDrivers",
- "id": "1d8bafdb-0998-4008-85e2-67e878d2fe97"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "hostName": "dkta-0810sk0016.ta.rd.local",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "multicastServerAddress": "0.0.0.0",
- "name": "DKTA-0810SK0016",
- "portNumber": 7563,
- "publicAccessEnabled": false,
- "publicWebserverHostName": "string",
- "publicWebserverPort": 0,
- "recordingServerFailovers": [
- {
- "displayName": "Failover settings",
- "failoverPort": 11000,
- "hotStandby": "FailoverRecorder[639DEDEB-FFA4-4449-8588-826061E895FF]",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9",
- "primaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "secondaryFailoverGroup": "FailoverGroup[00000000-0000-0000-0000-000000000000]",
- "relations": {
- "self": {
- "type": "recordingServerFailovers",
- "id": "7f6f3877-d8ad-4064-95e5-6e7fd57e70b9"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "recordingServerMulticasts": [
- {
- "displayName": "Multicast",
- "enabled": true,
- "id": "536c696f-29c3-4be8-8e35-be5720192620",
- "iPAddressEnd": "232.100.1.0",
- "iPAddressStart": "232.100.1.0",
- "MTU": "1500",
- "portRangeEnd": 47199,
- "portRangeStart": 47100,
- "TTL": "32",
- "relations": {
- "self": {
- "type": "recordingServerMulticasts",
- "id": "536c696f-29c3-4be8-8e35-be5720192620"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "shutdownOnStorageFailure": false,
- "storages": [
- {
- "archiveStorages": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "displayName": "ArchiveSchedule",
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": null,
- "id": null
}, - "parent": {
- "type": null,
- "id": null
}
}
}
], - "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "Storage may have a long description",
- "diskPath": "c:\\encryptedStorage",
- "displayName": "encryptedStorage",
- "encryptionMethod": "Light",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949",
- "isDefault": true,
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "name": "encryptedStorage",
- "retainMinutes": 30,
- "signing": false,
- "relations": {
- "self": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}, - "parent": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "synchronizationTime": -1,
- "timeZoneName": "Romance Standard Time",
- "version": "24.2.12065.1",
- "relations": {
- "self": {
- "type": "recordingServers",
- "id": "9f21d63b-6693-4dfc-ad0c-829f27ef9315"
}
}
}
], - "tasks": [
- {
- "result": {
- "progress": "25",
- "errorCode": "61002",
- "errorText": "Something went wrong",
- "state": "Error",
- "path": "hardware/F29FEF78-E5EA-4DCF-B654-8F76886DD873"
}
}
]
}
}
Get array of all archiveStorages
id required | string <guid> Example: f1e406c5-2da8-47cd-8b1c-9a2f8db33949 Id of the storage object |
{- "array": [
- {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "displayName": "ArchiveSchedule",
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": "archiveStorages",
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d"
}, - "parent": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}
}
}
]
}
Add an archiveStorage to an storages
id required | string <guid> Example: f1e406c5-2da8-47cd-8b1c-9a2f8db33949 Id of the storage object |
description | string Description |
framerateReductionEnabled | boolean Frame reduction enabled. Specifies if frame rate reduction is enabled or not on the archive |
maxSize | integer Maximum size. The maximum size of the archive storage in MB. The default value is 1 GB |
name | string Name |
retainMinutes | integer Retention time. The number of minutes that must elapse before data are deleted or archived. The default value is 1 day |
targetFramerate | number <double> Frame rate. The frame rate reduction of media data in frames per second |
object (archiveSchedules) | |
object |
{- "description": "ArchiveStorage may have a long description",
- "framerateReductionEnabled": false,
- "maxSize": 1024,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": "archiveStorages",
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d"
}, - "parent": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}
}
}
{- "result": {
- "createdDate": "2022-05-23T09:24:58.9130000+02:00",
- "description": "ArchiveStorage may have a long description",
- "diskPath": "c:\\archive",
- "displayName": "MyArchive",
- "framerateReductionEnabled": false,
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d",
- "lastModified": "2022-05-23T09:24:58.9130000+02:00",
- "maxSize": 1024,
- "mounted": false,
- "name": "MyArchive",
- "retainMinutes": 11080,
- "targetFramerate": 5,
- "archiveSchedules": {
- "activeEndTimeOfDay": 86399,
- "activeStartTimeOfDay": 0,
- "displayName": "ArchiveSchedule",
- "frequencyInterval": 1,
- "frequencyRecurrenceFactor": 1,
- "frequencyRelativeInterval": "First",
- "frequencySubDayInterval": 0,
- "frequencySubDayType": "Once",
- "frequencyType": "Daily"
}, - "relations": {
- "self": {
- "type": "archiveStorages",
- "id": "a0136b02-f0ba-4da1-890a-d5818541287d"
}, - "parent": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}
}
}
}
Remove an archiveStorage from an storages
idParent required | string <guid> Example: f1e406c5-2da8-47cd-8b1c-9a2f8db33949 Id of parent object |
id required | string <guid> Example: f1e406c5-2da8-47cd-8b1c-9a2f8db33949 Id of the object |
{- "state": "Success"
}
Get specific object of storageInformation
id required | string <guid> Example: ab067b12-25b6-4784-aeba-ee09b00f3bf2 Id of the object |
tasks | string Get list of all tasks supported by this object |
{- "data": {
- "anyTablesWithData": "DoesNotContainData",
- "displayName": "string",
- "isAvailable": true,
- "isMounted": true,
- "lastUpdated": "2022-05-23T09:24:58.9130000+02:00",
- "lockedUsedSpace": 0,
- "usedSpace": 0,
- "relations": {
- "self": {
- "type": "storageInformation",
- "id": "ab067b12-25b6-4784-aeba-ee09b00f3bf2"
}, - "parent": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Update all fields on storageInformation
id required | string <guid> Example: ab067b12-25b6-4784-aeba-ee09b00f3bf2 Id of the object |
object |
{- "relations": {
- "self": {
- "type": "storageInformation",
- "id": "ab067b12-25b6-4784-aeba-ee09b00f3bf2"
}, - "parent": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}
}
}
{- "data": {
- "anyTablesWithData": "DoesNotContainData",
- "displayName": "string",
- "isAvailable": true,
- "isMounted": true,
- "lastUpdated": "2022-05-23T09:24:58.9130000+02:00",
- "lockedUsedSpace": 0,
- "usedSpace": 0,
- "relations": {
- "self": {
- "type": "storageInformation",
- "id": "ab067b12-25b6-4784-aeba-ee09b00f3bf2"
}, - "parent": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}
}
}
}
Update provided fields on storageInformation
id required | string <guid> Example: ab067b12-25b6-4784-aeba-ee09b00f3bf2 Id of the object |
object |
{- "relations": {
- "self": {
- "type": "storageInformation",
- "id": "ab067b12-25b6-4784-aeba-ee09b00f3bf2"
}, - "parent": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}
}
}
{- "data": {
- "anyTablesWithData": "DoesNotContainData",
- "displayName": "string",
- "isAvailable": true,
- "isMounted": true,
- "lastUpdated": "2022-05-23T09:24:58.9130000+02:00",
- "lockedUsedSpace": 0,
- "usedSpace": 0,
- "relations": {
- "self": {
- "type": "storageInformation",
- "id": "ab067b12-25b6-4784-aeba-ee09b00f3bf2"
}, - "parent": {
- "type": "storages",
- "id": "f1e406c5-2da8-47cd-8b1c-9a2f8db33949"
}
}
}
}
This can only be called on a valid session id. To support trickle ICE, call this method continuously during the session to check for new candidates.
sessionId required | string <uuid> |
To support trickle ICE, call this method whenever a new ICE candidate is found
sessionId required | string <uuid> |
sessionId | string <uuid> Session id of the session where the ICE candidates are used |
candidates | Array of strings or null List of ICE candidates |
{- "sessionId": "f6567dd8-e069-418e-8893-7d22fcf12459",
- "candidates": [
- "string"
]
}
The user has to have access to the camera in order for the session to be created. Note: Cameras with masking enabled cannot be used, the reason being a H.264 camera with masking enabled will output a JPEG stream which WebRTC does not support
sessionId | string or null Unique id of the session |
cameraId | string or null Id of the camera that is used in the session |
token | string or null OAuth token, avaible only for patching. It cannot be retrieved |
resolution | string or null Added for future use |
offerSDP | string or null WebRTC SDP offer |
answerSDP | string or null WebRTC SDP answer |
streamId | string or null Selects a specific stream from a camera with multiple streams |
object (PlaybackTimeNode) | |
Array of objects or null (IceServer) List of STUN and TURN servers to use |
{- "sessionId": "string",
- "cameraId": "string",
- "token": "string",
- "resolution": "string",
- "offerSDP": "string",
- "answerSDP": "string",
- "streamId": "string",
- "playbackTimeNode": {
- "playbackTime": "string",
- "skipGaps": true,
- "speed": 0.1
}, - "iceServers": [
- {
- "url": "string",
- "userName": "string",
- "credential": "string"
}
]
}
Currently it's possible to update the AnswerSDP and the Token. AnswerSDP should be updated after the session has been initiated if the OfferSDP is acceptable. Token should be called before it times out. Default timeout for a Token is 1 hour.
sessionId required | string <uuid> |
sessionId | string or null Unique id of the session |
cameraId | string or null Id of the camera that is used in the session |
token | string or null OAuth token, avaible only for patching. It cannot be retrieved |
resolution | string or null Added for future use |
offerSDP | string or null WebRTC SDP offer |
answerSDP | string or null WebRTC SDP answer |
streamId | string or null Selects a specific stream from a camera with multiple streams |
object (PlaybackTimeNode) | |
Array of objects or null (IceServer) List of STUN and TURN servers to use |
{- "sessionId": "string",
- "cameraId": "string",
- "token": "string",
- "resolution": "string",
- "offerSDP": "string",
- "answerSDP": "string",
- "streamId": "string",
- "playbackTimeNode": {
- "playbackTime": "string",
- "skipGaps": true,
- "speed": 0.1
}, - "iceServers": [
- {
- "url": "string",
- "userName": "string",
- "credential": "string"
}
]
}