Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Request body:

Code Block
{
    "method":"axxonsoftAxxonSoft.bl.logic.LogicService.ListMacros",
    "data": {
        "view": "VIEW_MODE_FULL"
            }
}

...

Get complete information on one/several macros

Code Block
{
    "method":"axxonsoftAxxonSoft.bl.logic.LogicService.BatchGetMacros",
    "data":{
        "macros_ids" : ["cfd41b18-c983-4a48-aaa1-ca7e666e6e49"]
            }
}

...

Creating:

Code Block
{
"method": "axxonsoftAxxonSoft.bl.logic.LogicService.ChangeMacros",
"data": {
        "added_macros": {
           "guid": "3303abb2-181e-4183-8987-8a06c309a741",
           "name": "TEST_MACRO",
           "mode": {
                "enabled": true,
                "user_role": "",
                "is_add_to_menu": true,
                "common": {}
            },
            "conditions": {
                "0": {
                    "path": "/C:0",
                    "archive_write": {
                        "camera": "hosts/SERVER1/DeviceIpint.1/SourceEndpoint.video:0:0",
                        "state": "ON"
                    }
                },
                    "1": {
                    "path": "/C:0",
                    "archive_write": {
                        "camera": "hosts/SERVER1/DeviceIpint.1/SourceEndpoint.video:0:0",
                        "state": "ON"
                    }
                }
            },
            "rules": {
                "0": {
                    "path": "/E:0",
                    "action": {
                        "timeout_ms": 60000,
                        "cancel_conditions": {},
                        "action": {
                            "raise_alert": {
                                "zone": "",
                                "archive": "",
                                "offset_ms": 0,
                                "mode": "RAM_AlwaysIfNoActiveAlert"
                            }
                        }
                    }
                },
                "1": {
                    "path": "/E:0",
                    "action": {
                        "timeout_ms": 60000,
                        "cancel_conditions": {},
                        "action": {
                            "raise_alert": {
                                "zone": "",
                                "archive": "",
                                "offset_ms": 0,
                                "mode": "RAM_AlwaysIfNoActiveAlert"
                            }
                        }
                    }    
                }
            }
        }
    }
}

...

Info
titleNote

Leave empty curly brackets { } in the conditions and rules groups.


Code Block
{
    "method": "axxonsoftAxxonSoft.bl.logic.LogicService.ChangeMacros",
    "data": {
            "modified_macros": {
            "guid": "3303abb2-181e-4183-8987-8a06c309a741",
            "mode": {
                "common": {}
            },
            "conditions": {
                "0": {}
            },            
            "rules": {
                "1": {}
            }
        }
    }
}

Removing:

Code Block
{
    "method":"axxonsoftAxxonSoft.bl.logic.LogicService.ChangeMacros",
    "data":{
        "removed_macros" : ["3303abb2-181e-4183-8987-8a06c309a741"]
            }
}

Launch a macro

Code Block
{
    "method":"axxonsoftAxxonSoft.bl.logic.LogicService.LaunchMacro",
    "data":{
        "macro_id" : "caef76f0-37e9-43b0-aba6-c2a2f32ccd2f"
            }
}

...

Expand


Code Block
{
    "method":"axxonsoftAxxonSoft.bl.logic.LogicService.ChangeMacros",
    "data":{
        "added_macros" : {
            "guid": "b55c118a-f902-43ec-b55a-67ee062640b2",
            "name": "MacroEmail",
            "mode": {
                "enabled": true,
                "user_role": "",
                "is_add_to_menu": false,
                "continuous": {
                    "server": "Server1",
                    "timezone_id": "00000000-0000-0000-0000-000000000000",
                    "heartbeat_ms": 0,
                    "random": true
                }
            },
            "conditions": {},
            "rules": {
                "0": {
                    "path": "/E:0",
                    "check": {
                        "check": {
                            "camera": "99f72952-d8b8-4590-90e8-7e0e78bcd719",
                            "archive": "",
                            "depth_ms": 5400000,
                            "type": "CT_CHECK_RECORD"
                        },
                        "success_rules": {},
                        "failure_rules": {
                            "0": {
                                "path": "/E:0/T:0",
                                "action": {
                                    "timeout_ms": 0,
                                    "cancel_conditions": {},
                                    "action": {
                                        "email_notification": {
                                            "notifier": "hosts/Server1/EMailModule.1",
                                            "recipients": [
                                                "mail@server.com"
                                            ],
                                            "subject": "Notification: Attention, automatic rule is triggered.",
                                            "msg_text": "On server: {cameraNode} by camera {cameraName}  problems with archiving.\nDate: {dateTime}",
                                            "atach_video": false,
                                            "export_agent": "",
                                            "span_ms": 0,
                                            "camera": "",
                                            "archive": ""
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}


Info
titleNote

"camera": "99f72952-d8b8-4590-90e8-7e0e78bcd719" is the camera group id.


...