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 mailNotificationProfile
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": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "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: "9886ed82-ca89-4aa1-aad9-d905daaaccbf" "f0b3970c-3d40-4690-b0d2-3dbb552da56d" End position: Preset. .
Value map to display names:
9886ed82-ca89-4aa1-aad9-d905daaaccbf=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": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "order": 0,
- "presetId": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "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": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "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: "9886ed82-ca89-4aa1-aad9-d905daaaccbf" "f0b3970c-3d40-4690-b0d2-3dbb552da56d" End position: Preset. .
Value map to display names:
9886ed82-ca89-4aa1-aad9-d905daaaccbf=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": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "order": 0,
- "presetId": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "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": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "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": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "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 site 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": {
- "type": "accessControlRuleGroups",
- "id": "9e16c2b0-4cb7-4566-a08a-c1af64958a55"
}, - "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": {
- "type": "accessControlRuleGroups",
- "id": "9e16c2b0-4cb7-4566-a08a-c1af64958a55"
}, - "relations": {
- "self": {
- "type": "accessControlSystems",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
}
}
], - "alarmDefinitions": [
- {
- "assignableToAdmins": false,
- "autoClose": false,
- "category": "911fae12-febb-4651-a68e-437f4a786aeb",
- "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,
- "failoverSetting": "FullSupport",
- "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": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "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,
- "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,
- "exportMergeIncludeCameraNames": "No",
- "exportMergeIncludeCameraNamesLocked": false,
- "exportMergeIncludeTimestamps": "No",
- "exportMergeIncludeTimestampsLocked": false,
- "exportMergeMediaPlayerFormat": "Unavailable",
- "exportMergeMediaPlayerFormatLocked": true,
- "exportMergePreventUpscaling": "No",
- "exportMergePreventUpscalingLocked": false,
- "exportMergeQuality": "Medium",
- "exportMergeQualityLocked": false,
- "exportMergeResolution": "FullHD",
- "exportMergeResolutionLocked": false,
- "exportMergeSequenceType": "Sequential",
- "exportMergeSequenceTypeLocked": 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[5a5a8ffb-e30b-47ab-892f-f01e53b15d13]",
- "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[5a5a8ffb-e30b-47ab-892f-f01e53b15d13]",
- "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,
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "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,
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "failoverSetting": "FullSupport",
- "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[B8A3D9FC-E322-48A5-8EF6-2757CE082E45]",
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "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",
- "clientId": "3800261d-bd75-4d01-a822-e2a0d364d242",
- "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,
- "failoverSetting": "FullSupport",
- "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": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "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,
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "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,
- "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,
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "failoverSetting": "FullSupport",
- "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[B8A3D9FC-E322-48A5-8EF6-2757CE082E45]",
- "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",
- "taskType": "StorageRetrieval"
}
}
]
}
}
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": {
- "type": "accessControlRuleGroups",
- "id": "9e16c2b0-4cb7-4566-a08a-c1af64958a55"
}, - "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": {
- "type": "accessControlRuleGroups",
- "id": "9e16c2b0-4cb7-4566-a08a-c1af64958a55"
}, - "relations": {
- "self": {
- "type": "accessControlSystems",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
}
}
], - "alarmDefinitions": [
- {
- "assignableToAdmins": false,
- "autoClose": false,
- "category": "911fae12-febb-4651-a68e-437f4a786aeb",
- "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,
- "failoverSetting": "FullSupport",
- "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": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "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,
- "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,
- "exportMergeIncludeCameraNames": "No",
- "exportMergeIncludeCameraNamesLocked": false,
- "exportMergeIncludeTimestamps": "No",
- "exportMergeIncludeTimestampsLocked": false,
- "exportMergeMediaPlayerFormat": "Unavailable",
- "exportMergeMediaPlayerFormatLocked": true,
- "exportMergePreventUpscaling": "No",
- "exportMergePreventUpscalingLocked": false,
- "exportMergeQuality": "Medium",
- "exportMergeQualityLocked": false,
- "exportMergeResolution": "FullHD",
- "exportMergeResolutionLocked": false,
- "exportMergeSequenceType": "Sequential",
- "exportMergeSequenceTypeLocked": 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[5a5a8ffb-e30b-47ab-892f-f01e53b15d13]",
- "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[5a5a8ffb-e30b-47ab-892f-f01e53b15d13]",
- "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,
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "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,
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "failoverSetting": "FullSupport",
- "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[B8A3D9FC-E322-48A5-8EF6-2757CE082E45]",
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "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",
- "clientId": "3800261d-bd75-4d01-a822-e2a0d364d242",
- "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": {
- "type": "accessControlRuleGroups",
- "id": "9e16c2b0-4cb7-4566-a08a-c1af64958a55"
}, - "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": {
- "type": "accessControlRuleGroups",
- "id": "9e16c2b0-4cb7-4566-a08a-c1af64958a55"
}, - "relations": {
- "self": {
- "type": "accessControlSystems",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
}
}
], - "alarmDefinitions": [
- {
- "assignableToAdmins": false,
- "autoClose": false,
- "category": "911fae12-febb-4651-a68e-437f4a786aeb",
- "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,
- "failoverSetting": "FullSupport",
- "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": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "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,
- "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,
- "exportMergeIncludeCameraNames": "No",
- "exportMergeIncludeCameraNamesLocked": false,
- "exportMergeIncludeTimestamps": "No",
- "exportMergeIncludeTimestampsLocked": false,
- "exportMergeMediaPlayerFormat": "Unavailable",
- "exportMergeMediaPlayerFormatLocked": true,
- "exportMergePreventUpscaling": "No",
- "exportMergePreventUpscalingLocked": false,
- "exportMergeQuality": "Medium",
- "exportMergeQualityLocked": false,
- "exportMergeResolution": "FullHD",
- "exportMergeResolutionLocked": false,
- "exportMergeSequenceType": "Sequential",
- "exportMergeSequenceTypeLocked": 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[5a5a8ffb-e30b-47ab-892f-f01e53b15d13]",
- "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[5a5a8ffb-e30b-47ab-892f-f01e53b15d13]",
- "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,
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "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,
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "failoverSetting": "FullSupport",
- "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[B8A3D9FC-E322-48A5-8EF6-2757CE082E45]",
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "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",
- "clientId": "3800261d-bd75-4d01-a822-e2a0d364d242",
- "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": {
- "type": "accessControlRuleGroups",
- "id": "9e16c2b0-4cb7-4566-a08a-c1af64958a55"
}, - "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": {
- "type": "accessControlRuleGroups",
- "id": "9e16c2b0-4cb7-4566-a08a-c1af64958a55"
}, - "relations": {
- "self": {
- "type": "accessControlSystems",
- "id": "80fe8f7e-473b-4aeb-a9e8-1ea7dcc335e6"
}
}
}
], - "alarmDefinitions": [
- {
- "assignableToAdmins": false,
- "autoClose": false,
- "category": "911fae12-febb-4651-a68e-437f4a786aeb",
- "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,
- "failoverSetting": "FullSupport",
- "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": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "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,
- "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,
- "exportMergeIncludeCameraNames": "No",
- "exportMergeIncludeCameraNamesLocked": false,
- "exportMergeIncludeTimestamps": "No",
- "exportMergeIncludeTimestampsLocked": false,
- "exportMergeMediaPlayerFormat": "Unavailable",
- "exportMergeMediaPlayerFormatLocked": true,
- "exportMergePreventUpscaling": "No",
- "exportMergePreventUpscalingLocked": false,
- "exportMergeQuality": "Medium",
- "exportMergeQualityLocked": false,
- "exportMergeResolution": "FullHD",
- "exportMergeResolutionLocked": false,
- "exportMergeSequenceType": "Sequential",
- "exportMergeSequenceTypeLocked": 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[5a5a8ffb-e30b-47ab-892f-f01e53b15d13]",
- "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[5a5a8ffb-e30b-47ab-892f-f01e53b15d13]",
- "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,
- "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>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"
}
}
}
], - "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,
- "failoverSetting": "FullSupport",
- "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,
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "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,
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "failoverSetting": "FullSupport",
- "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[B8A3D9FC-E322-48A5-8EF6-2757CE082E45]",
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "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",
- "clientId": "3800261d-bd75-4d01-a822-e2a0d364d242",
- "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"
}
}
}
}
{- "array": [
- {
- "result": {
- "progress": "25",
- "errorCode": "61002",
- "errorText": "Something went wrong",
- "state": "Error",
- "path": "hardware/F29FEF78-E5EA-4DCF-B654-8F76886DD873",
- "taskType": "StorageRetrieval"
}
}
]
}
Tasks
id required | string <guid> Example: 42 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",
- "taskType": "StorageRetrieval"
}
}, - "tasks": [
- {
- "name": "MoveHardwareId",
- "displayName": "move it"
}
], - "resources": [
- {
- "type": "recordingServers",
- "displayName": "Recording Servers"
}
]
}
Tasks
id required | string <guid> Example: 42 Id of the object |
task required | string Example: task=TaskCleanup task=TaskStop, or task=TaskCleanup TaskStop - Stop TaskCleanup - Finish |
{- "result": {
- "state": "Success"
}
}
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,
- "failoverSetting": "FullSupport",
- "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": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "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,
- "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,
- "failoverSetting": "FullSupport",
- "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": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "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,
- "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,
- "failoverSetting": "FullSupport",
- "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": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "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,
- "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,
- "failoverSetting": "FullSupport",
- "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": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "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,
- "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,
- "failoverSetting": "FullSupport",
- "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": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "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,
- "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,
- "failoverSetting": "FullSupport",
- "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": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "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,
- "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,
- "failoverSetting": "FullSupport",
- "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": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "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,
- "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,
- "failoverSetting": "FullSupport",
- "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": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "endSpeed": 0,
- "endTransitionTime": 0,
- "id": "0592c885-be06-4b65-b058-0118c873b733",
- "initSpeed": 1,
- "initTransitionTime": 3,
- "name": "Profile 1",
- "patrollingEntry": [
- {
- "displayName": "Patrolling entry",
- "order": 0,
- "presetId": "9886ed82-ca89-4aa1-aad9-d905daaaccbf",
- "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,
- "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,
- "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,
- "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,
- "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,
- "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,
- "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,
- "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,
- "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,
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "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,
- "failoverSetting": "FullSupport",
- "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,
- "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"
}
}
}
}