# Get universal alert Get a single alert by its uuid. Endpoint: GET /universal-alert/{uuid} Security: Authorization ## Path parameters: - `uuid` (string, required) ## Response 200 fields (application/json): - `id` (string) internal unique identifier of the alert Example: 2255 - `enabled` (boolean, required) the active status of the alert Example: true - `target` (string) Date string of next notification Example: "2021-12-13T16:00:00.000+00:00" - `timezone` (string) Example: "America/New_York" - `alert_name` (string) Example: "client decided label" - `rrule` (string) Example: "DTSTART;TZID=America/New_York:20211201T163000\nRRULE:FREQ=WEEKLY;COUNT=30;INTERVAL=1;WKST=MO" - `monitor` (object) Example: {"monitor_mode":"INACTIVITY","duration_minutes":10,"inactive_minutes":2,"repeat_monitoring":true} - `monitor.monitor_mode` (string) Example: "INACTIVITY" - `monitor.duration_minutes` (integer) Example: 10 - `monitor.inactive_minutes` (integer) Example: 2 - `monitor.repeat_monitoring` (boolean) Example: true - `meta` (object) Example: {"anything":"client controlled writable space"} - `meta.anything` (string) Example: "client controlled writable space" - `analytics_tag` (string) Example: "caregiver_alert_trace" - `no_motion_actions` (array) Example: [{"action":"fcm_push","user_ids":[5,9],"payload":{"apns":{"headers":{"apns-push-type":"alert","apns-topic":"com.csc.HaloHome"},"payload":{"aps":{"alert":{"title":"no motion","body":"123"},"sound":"Aura_Push_Final.wav","category":"User"}}}}}] - `no_motion_actions.action` (string, required) Supported actions are - `no_motion_actions.user_ids` (array) Array of user ids - `no_motion_actions.payload` (object) Payload to add to the action. Data in payload should match API input for MNS /network/{network_id}/events/create Data in payload should match API input for FireBase push API - `motion_actions` (array) Example: [{"action":"fcm_push","payload":{"data":{"click_action":"CustomAlertEvent","title":"NO Motion Ua","body":"No Motion was detected during Now","sound":"Aura_Push_Final.wav"},"apns":{"headers":{"apns-push-type":"alert","apns-topic":"com.csc.HaloHome"},"payload":{"aps":{"alert":{"title":"motion","body":"123"},"sound":"Aura_Push_Final.wav","category":"User"}}}}}] - `unknown_actions` (array) Example: [] - `error_actions` (array) Example: [] - `uuid` (string) Unique id Example: "Unique alert identifier" - `external_id` (string) External network id - `window_end` (number) - `window_start` (integer) Timestamp showing when monitoring will start - `created_at` (integer) Alert creation timestamp - `next_run` (any) Timestamp of the next alert trigger. Can be used to monitor the execution of alerts inside the inactivity window.