Vivi has an API key that can be used with your existing emergency management system to trigger and cancel an emergency within Vivi.
Please note: For the Vivi Emergency API to operate, your existing emergency management system needs to be able to output a web-based trigger. Please refer to the manufacturer’s instructions of your system for more information on if this is available. |
You can request your API key by raising a support request within Vivi Central: https://admin.vivi.io/support
In the triggers, you will need to insert your Emergency Type ID and have the option of including the Location ID. The Emergency Type ID is the name of the emergency as shown in Vivi Central. Emergency types can be viewed and edited at: https://admin.vivi.io/emergencies/emergency-types. The Location ID is the name of a location or sub-location as shown in Vivi Central. Locations and sub-locations can be viewed and edited at: https://admin.vivi.io/organisations/locations.
Your emergency management system needs to output the following URL to trigger an emergency:
https://api.vivi.io/api/public/v1/emergencies/trigger?key=<api_key>&type=<emergency_type_id>&location=<location_id>
<api_key>: Organisation API key – Required |
Your emergency management system needs to output the following URL to cancel an emergency:
https://api.vivi.io/api/public/v1/emergencies/cancel?key=<api_key>&type=<emergency_type_id>&location=<location_id>
<api_key>: Organisation API key – Required |
The Emergencies page in Vivi Central can be used to view and cancel currently active emergencies and stores a full history of previously run emergencies. This page can be accessed at: https://admin.vivi.io/emergencies
When testing the emergency API from the command line or terminal, you may find that a valid Emergency API URL causes a 400 Bad Request error to be returned. This may be because your terminal is interpreting ?
or &
as special characters. In this case, it may be necessary to wrap the URL in quotes. For example, if you’re using wget
:
wget "https://api.vivi.io/public/v1/emergencies/trigger?key=my_key&type=9716eec6-112f-4940-b1b5-16f3d66ca2ea&location=6e7873b3-05e4-4ac6-8719-db049d53fbee" |