/api/asset/active

Usage

This function is used to get a list of all of the active alerts in ARDI. This is part of the core API.

Details

DetailValue
GroupAsset
From Server Version2025.0.2
PermissionGuest
MethodsGET or POST
Parameters
ParameterNotesMeaning
formatString (xml)Either 'xml' or 'json'

Examples

Call
http://ardiserver.com/api/alert/allalerts
Success (XML)
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<contents>
    <alert id="1" name="Bridle #2 Roller 1 Slipping" asset="70"/>
</contents>
Success (JSON)
[
   {"id":1,"name":"Bridle #2 Roller 1 Slipping","assetid":70,"state":1},
]