{ "info": { "_postman_id": "4a6a8410-5c5f-47cc-af38-f6e800cb1197", "name": "ThingsBoard Admin admin-controller alarm-controller API", "description": "ThingsBoard Admin API \u2014 subset of the ThingsBoard REST API (open-source IoT platform). Covers: Admin, Audit Log, Event, Usage Info, Queue, Queue Stats, Mail Config Template, Qr Code Settings, Job.\n\nContact Support:\n Name: ThingsBoard team\n Email: info@thingsboard.io", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "lastUpdatedBy": "35240", "uid": "35240-4a6a8410-5c5f-47cc-af38-f6e800cb1197" }, "item": [ { "name": "api", "item": [ { "name": "alarm", "item": [ { "name": "{alarmId}", "item": [ { "name": "clear", "item": [ { "name": "Clear Alarm (clearAlarm)", "id": "4aa82e44-73c4-468c-ad7d-57bd851c848e", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/alarm/:alarmId/clear", "host": [ "{{baseUrl}}" ], "path": [ "api", "alarm", ":alarmId", "clear" ], "variable": [ { "id": "6ff0b574-0721-4349-9e16-b94ee179e6a4", "key": "alarmId", "value": "", "description": "(Required) A string value representing the alarm id. For example, '784f394c-42b6-435a-983c-b7beff2784f9'" } ] }, "description": "Clear the Alarm. Once cleared, the 'clear_ts' field will be set to current timestamp and special rule chain event 'ALARM_CLEAR' will be generated. Referencing non-existing Alarm Id will cause an error.\n\nAvailable for users with 'TENANT_ADMIN' or 'CUSTOMER_USER' authority." }, "response": [ { "id": "ae2a7c1f-6466-4a1c-8155-081126782208", "name": "OK", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/alarm/:alarmId/clear", "host": [ "{{baseUrl}}" ], "path": [ "api", "alarm", ":alarmId", "clear" ], "variable": [ { "key": "alarmId" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"acknowledged\": \"\",\n \"cleared\": \"\",\n \"name\": \"\",\n \"originator\": {\n \"entityType\": \"EDGE\",\n \"id\": \"\"\n },\n \"severity\": \"INDETERMINATE\",\n \"status\": \"CLEARED_UNACK\",\n \"type\": \"\",\n \"id\": {\n \"entityType\": \"ALARM\",\n \"id\": \"\"\n },\n \"createdTime\": \"\",\n \"tenantId\": {\n \"entityType\": \"TENANT\",\n \"id\": \"\"\n },\n \"customerId\": {\n \"entityType\": \"CUSTOMER\",\n \"id\": \"\"\n },\n \"assigneeId\": {\n \"entityType\": \"USER\",\n \"id\": \"\"\n },\n \"startTs\": \"\",\n \"endTs\": \"\",\n \"ackTs\": \"\",\n \"clearTs\": \"\",\n \"assignTs\": \"\",\n \"propagate\": \"\",\n \"propagateToOwner\": \"\",\n \"propagateToTenant\": \"\",\n \"propagateRelationTypes\": [\n \"\",\n \"\"\n ],\n \"originatorName\": \"\",\n \"originatorLabel\": \"\",\n \"originatorDisplayName\": \"\",\n \"assignee\": {\n \"id\": {\n \"entityType\": \"USER\",\n \"id\": \"\"\n },\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\"\n },\n \"details\": {\n \"description\": \"A value representing the any type (object or primitive)\",\n \"examples\": [\n {}\n ]\n }\n}", "createdAt": "2026-07-28T03:11:58.000Z", "updatedAt": "2026-07-28T03:11:58.000Z", "uid": "35240-ae2a7c1f-6466-4a1c-8155-081126782208" } ], "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-4aa82e44-73c4-468c-ad7d-57bd851c848e" } ], "id": "b9f358b1-a3f1-4a43-9fb6-20ec1581fe8b", "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-b9f358b1-a3f1-4a43-9fb6-20ec1581fe8b" }, { "name": "assign", "item": [ { "name": "{assigneeId}", "item": [ { "name": "Assign/Reassign Alarm (assignAlarm)", "id": "03f0335e-e721-4c6a-a956-eda2661f3e27", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/alarm/:alarmId/assign/:assigneeId", "host": [ "{{baseUrl}}" ], "path": [ "api", "alarm", ":alarmId", "assign", ":assigneeId" ], "variable": [ { "id": "7edfb6a7-6fee-42d6-ba42-d2e519369969", "key": "alarmId", "value": "", "description": "(Required) A string value representing the alarm id. For example, '784f394c-42b6-435a-983c-b7beff2784f9'" }, { "id": "f1318692-3e60-4631-99db-151c57525614", "key": "assigneeId", "value": "", "description": "(Required) A string value representing the user id. For example, '784f394c-42b6-435a-983c-b7beff2784f9'" } ] }, "description": "Assign the Alarm. Once assigned, the 'assign_ts' field will be set to current timestamp and special rule chain event 'ALARM_ASSIGNED' (or ALARM_REASSIGNED in case of assigning already assigned alarm) will be generated. Referencing non-existing Alarm Id will cause an error.\n\nAvailable for users with 'TENANT_ADMIN' or 'CUSTOMER_USER' authority." }, "response": [ { "id": "d393def5-fd08-4384-a306-74600b574cf5", "name": "OK", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/alarm/:alarmId/assign/:assigneeId", "host": [ "{{baseUrl}}" ], "path": [ "api", "alarm", ":alarmId", "assign", ":assigneeId" ], "variable": [ { "key": "alarmId" }, { "key": "assigneeId" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"acknowledged\": \"\",\n \"cleared\": \"\",\n \"name\": \"\",\n \"originator\": {\n \"entityType\": \"EDGE\",\n \"id\": \"\"\n },\n \"severity\": \"CRITICAL\",\n \"status\": \"CLEARED_ACK\",\n \"type\": \"\",\n \"tenantId\": {\n \"entityType\": \"TENANT\",\n \"id\": \"\"\n },\n \"customerId\": {\n \"entityType\": \"CUSTOMER\",\n \"id\": \"\"\n },\n \"assigneeId\": {\n \"entityType\": \"USER\",\n \"id\": \"\"\n },\n \"startTs\": \"\",\n \"endTs\": \"\",\n \"ackTs\": \"\",\n \"clearTs\": \"\",\n \"assignTs\": \"\",\n \"details\": {\n \"description\": \"A value representing the any type (object or primitive)\",\n \"examples\": [\n {}\n ]\n },\n \"propagate\": \"\",\n \"propagateToOwner\": \"\",\n \"propagateToTenant\": \"\",\n \"propagateRelationTypes\": [\n \"\",\n \"\"\n ],\n \"id\": {\n \"entityType\": \"ALARM\",\n \"id\": \"\"\n },\n \"createdTime\": \"\"\n}", "createdAt": "2026-07-28T03:11:58.000Z", "updatedAt": "2026-07-28T03:11:58.000Z", "uid": "35240-d393def5-fd08-4384-a306-74600b574cf5" } ], "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-03f0335e-e721-4c6a-a956-eda2661f3e27" } ], "id": "002fd396-6024-404e-864b-0c962f2e9de8", "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-002fd396-6024-404e-864b-0c962f2e9de8" }, { "name": "Unassign Alarm (unassignAlarm)", "id": "d9af4f65-ac38-4667-9c78-88af6268c61e", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/alarm/:alarmId/assign", "host": [ "{{baseUrl}}" ], "path": [ "api", "alarm", ":alarmId", "assign" ], "variable": [ { "id": "184b427f-9d45-40e2-a9dc-b005a28adbcd", "key": "alarmId", "value": "", "description": "(Required) A string value representing the alarm id. For example, '784f394c-42b6-435a-983c-b7beff2784f9'" } ] }, "description": "Unassign the Alarm. Once unassigned, the 'assign_ts' field will be set to current timestamp and special rule chain event 'ALARM_UNASSIGNED' will be generated. Referencing non-existing Alarm Id will cause an error.\n\nAvailable for users with 'TENANT_ADMIN' or 'CUSTOMER_USER' authority." }, "response": [ { "id": "1d9d6777-e788-4ec2-8cd8-fcb30fcfe395", "name": "OK", "originalRequest": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/alarm/:alarmId/assign", "host": [ "{{baseUrl}}" ], "path": [ "api", "alarm", ":alarmId", "assign" ], "variable": [ { "key": "alarmId" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"acknowledged\": \"\",\n \"cleared\": \"\",\n \"name\": \"\",\n \"originator\": {\n \"entityType\": \"EDGE\",\n \"id\": \"\"\n },\n \"severity\": \"CRITICAL\",\n \"status\": \"CLEARED_ACK\",\n \"type\": \"\",\n \"tenantId\": {\n \"entityType\": \"TENANT\",\n \"id\": \"\"\n },\n \"customerId\": {\n \"entityType\": \"CUSTOMER\",\n \"id\": \"\"\n },\n \"assigneeId\": {\n \"entityType\": \"USER\",\n \"id\": \"\"\n },\n \"startTs\": \"\",\n \"endTs\": \"\",\n \"ackTs\": \"\",\n \"clearTs\": \"\",\n \"assignTs\": \"\",\n \"details\": {\n \"description\": \"A value representing the any type (object or primitive)\",\n \"examples\": [\n {}\n ]\n },\n \"propagate\": \"\",\n \"propagateToOwner\": \"\",\n \"propagateToTenant\": \"\",\n \"propagateRelationTypes\": [\n \"\",\n \"\"\n ],\n \"id\": {\n \"entityType\": \"ALARM\",\n \"id\": \"\"\n },\n \"createdTime\": \"\"\n}", "createdAt": "2026-07-28T03:11:58.000Z", "updatedAt": "2026-07-28T03:11:58.000Z", "uid": "35240-1d9d6777-e788-4ec2-8cd8-fcb30fcfe395" } ], "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-d9af4f65-ac38-4667-9c78-88af6268c61e" } ], "id": "ea500eb2-8ae6-4f55-ba24-b9f7d47cbc09", "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-ea500eb2-8ae6-4f55-ba24-b9f7d47cbc09" }, { "name": "ack", "item": [ { "name": "Acknowledge Alarm (ackAlarm)", "id": "259476b2-e927-41e1-9555-7b9d0b1557e7", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/alarm/:alarmId/ack", "host": [ "{{baseUrl}}" ], "path": [ "api", "alarm", ":alarmId", "ack" ], "variable": [ { "id": "d5ac097f-67c0-4f0b-a8d8-fdcdcd4b559e", "key": "alarmId", "value": "", "description": "(Required) A string value representing the alarm id. For example, '784f394c-42b6-435a-983c-b7beff2784f9'" } ] }, "description": "Acknowledge the Alarm. Once acknowledged, the 'ack_ts' field will be set to current timestamp and special rule chain event 'ALARM_ACK' will be generated. Referencing non-existing Alarm Id will cause an error.\n\nAvailable for users with 'TENANT_ADMIN' or 'CUSTOMER_USER' authority." }, "response": [ { "id": "8e089597-bb62-4114-8579-058689ad34a5", "name": "OK", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/alarm/:alarmId/ack", "host": [ "{{baseUrl}}" ], "path": [ "api", "alarm", ":alarmId", "ack" ], "variable": [ { "key": "alarmId" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"acknowledged\": \"\",\n \"cleared\": \"\",\n \"name\": \"\",\n \"originator\": {\n \"entityType\": \"EDGE\",\n \"id\": \"\"\n },\n \"severity\": \"INDETERMINATE\",\n \"status\": \"CLEARED_UNACK\",\n \"type\": \"\",\n \"id\": {\n \"entityType\": \"ALARM\",\n \"id\": \"\"\n },\n \"createdTime\": \"\",\n \"tenantId\": {\n \"entityType\": \"TENANT\",\n \"id\": \"\"\n },\n \"customerId\": {\n \"entityType\": \"CUSTOMER\",\n \"id\": \"\"\n },\n \"assigneeId\": {\n \"entityType\": \"USER\",\n \"id\": \"\"\n },\n \"startTs\": \"\",\n \"endTs\": \"\",\n \"ackTs\": \"\",\n \"clearTs\": \"\",\n \"assignTs\": \"\",\n \"propagate\": \"\",\n \"propagateToOwner\": \"\",\n \"propagateToTenant\": \"\",\n \"propagateRelationTypes\": [\n \"\",\n \"\"\n ],\n \"originatorName\": \"\",\n \"originatorLabel\": \"\",\n \"originatorDisplayName\": \"\",\n \"assignee\": {\n \"id\": {\n \"entityType\": \"USER\",\n \"id\": \"\"\n },\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\"\n },\n \"details\": {\n \"description\": \"A value representing the any type (object or primitive)\",\n \"examples\": [\n {}\n ]\n }\n}", "createdAt": "2026-07-28T03:11:58.000Z", "updatedAt": "2026-07-28T03:11:58.000Z", "uid": "35240-8e089597-bb62-4114-8579-058689ad34a5" } ], "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-259476b2-e927-41e1-9555-7b9d0b1557e7" } ], "id": "21ef0eeb-5bd6-45a5-9b39-ce055b1bb771", "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-21ef0eeb-5bd6-45a5-9b39-ce055b1bb771" }, { "name": "Get Alarm (getAlarmById)", "id": "de30bc58-7ee3-4d48-9d08-4a8c0ec0a3eb", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/alarm/:alarmId", "host": [ "{{baseUrl}}" ], "path": [ "api", "alarm", ":alarmId" ], "variable": [ { "id": "d9a3edd1-5191-49bd-a62d-374f36afa09d", "key": "alarmId", "value": "", "description": "(Required) A string value representing the alarm id. For example, '784f394c-42b6-435a-983c-b7beff2784f9'" } ] }, "description": "Fetch the Alarm object based on the provided Alarm Id. If the user has the authority of 'Tenant Administrator', the server checks that the originator of alarm is owned by the same tenant. If the user has the authority of 'Customer User', the server checks that the originator of alarm belongs to the customer. " }, "response": [ { "id": "8608a7fd-0831-4a27-a247-39b65b0f3c49", "name": "OK", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/alarm/:alarmId", "host": [ "{{baseUrl}}" ], "path": [ "api", "alarm", ":alarmId" ], "variable": [ { "key": "alarmId" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"acknowledged\": \"\",\n \"cleared\": \"\",\n \"name\": \"\",\n \"originator\": {\n \"entityType\": \"EDGE\",\n \"id\": \"\"\n },\n \"severity\": \"CRITICAL\",\n \"status\": \"CLEARED_ACK\",\n \"type\": \"\",\n \"tenantId\": {\n \"entityType\": \"TENANT\",\n \"id\": \"\"\n },\n \"customerId\": {\n \"entityType\": \"CUSTOMER\",\n \"id\": \"\"\n },\n \"assigneeId\": {\n \"entityType\": \"USER\",\n \"id\": \"\"\n },\n \"startTs\": \"\",\n \"endTs\": \"\",\n \"ackTs\": \"\",\n \"clearTs\": \"\",\n \"assignTs\": \"\",\n \"details\": {\n \"description\": \"A value representing the any type (object or primitive)\",\n \"examples\": [\n {}\n ]\n },\n \"propagate\": \"\",\n \"propagateToOwner\": \"\",\n \"propagateToTenant\": \"\",\n \"propagateRelationTypes\": [\n \"\",\n \"\"\n ],\n \"id\": {\n \"entityType\": \"ALARM\",\n \"id\": \"\"\n },\n \"createdTime\": \"\"\n}", "createdAt": "2026-07-28T03:11:58.000Z", "updatedAt": "2026-07-28T03:11:58.000Z", "uid": "35240-8608a7fd-0831-4a27-a247-39b65b0f3c49" } ], "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-de30bc58-7ee3-4d48-9d08-4a8c0ec0a3eb" }, { "name": "Delete Alarm (deleteAlarm)", "id": "7a55894b-8e81-4249-9ec6-bbf8dc146950", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/alarm/:alarmId", "host": [ "{{baseUrl}}" ], "path": [ "api", "alarm", ":alarmId" ], "variable": [ { "id": "c328782b-c1a9-45a5-825f-37a78cb798a3", "key": "alarmId", "value": "", "description": "(Required) A string value representing the alarm id. For example, '784f394c-42b6-435a-983c-b7beff2784f9'" } ] }, "description": "Deletes the Alarm. Referencing non-existing Alarm Id will cause an error.\n\nAvailable for users with 'TENANT_ADMIN' or 'CUSTOMER_USER' authority." }, "response": [ { "id": "0dbd0566-1064-452f-8fb0-c06d3fe8d11e", "name": "OK", "originalRequest": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/alarm/:alarmId", "host": [ "{{baseUrl}}" ], "path": [ "api", "alarm", ":alarmId" ], "variable": [ { "key": "alarmId" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "", "createdAt": "2026-07-28T03:11:58.000Z", "updatedAt": "2026-07-28T03:11:58.000Z", "uid": "35240-0dbd0566-1064-452f-8fb0-c06d3fe8d11e" } ], "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-7a55894b-8e81-4249-9ec6-bbf8dc146950" } ], "id": "004b07a1-bb81-40da-9116-e2e1b0cdf022", "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-004b07a1-bb81-40da-9116-e2e1b0cdf022" }, { "name": "{entityType}", "item": [ { "name": "{entityId}", "item": [ { "name": "Get Alarms (getAlarms)", "id": "bc6820e2-a35c-41ac-b8a9-011b12736af9", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/alarm/:entityType/:entityId?searchStatus=ACTIVE&status=CLEARED_UNACK&assigneeId=&pageSize=&page=&textSearch=&sortProperty=startTs&sortOrder=DESC&startTime=&endTime=&fetchOriginator=", "host": [ "{{baseUrl}}" ], "path": [ "api", "alarm", ":entityType", ":entityId" ], "query": [ { "description": "A string value representing one of the AlarmSearchStatus enumeration value", "key": "searchStatus", "value": "ACTIVE" }, { "description": "A string value representing one of the AlarmStatus enumeration value", "key": "status", "value": "CLEARED_UNACK" }, { "description": "A string value representing the assignee user id. For example, '784f394c-42b6-435a-983c-b7beff2784f9'", "key": "assigneeId", "value": "" }, { "description": "(Required) Maximum amount of entities in a one page", "key": "pageSize", "value": "" }, { "description": "(Required) Sequence number of page starting from 0", "key": "page", "value": "" }, { "description": "The case insensitive 'substring' filter based on of next alarm fields: type, severity or status", "key": "textSearch", "value": "" }, { "description": "Property of entity to sort by", "key": "sortProperty", "value": "startTs" }, { "description": "Sort order. ASC (ASCENDING) or DESC (DESCENDING)", "key": "sortOrder", "value": "DESC" }, { "description": "The start timestamp in milliseconds of the search time range over the Alarm class field: 'createdTime'.", "key": "startTime", "value": "" }, { "description": "The end timestamp in milliseconds of the search time range over the Alarm class field: 'createdTime'.", "key": "endTime", "value": "" }, { "description": "A boolean value to specify if the alarm originator name will be filled in the AlarmInfo object field: 'originatorName' or will returns as null.", "key": "fetchOriginator", "value": "" } ], "variable": [ { "id": "039cd505-5a4f-4881-b7ae-3ce589f7c428", "key": "entityType", "value": "", "description": "(Required) A string value representing the entity type. For example, 'DEVICE'" }, { "id": "0db105ea-6278-4e4f-8293-c8f0accf6a3e", "key": "entityId", "value": "", "description": "(Required) A string value representing the entity id. For example, '784f394c-42b6-435a-983c-b7beff2784f9'" } ] }, "description": "Returns a page of alarms for the selected entity. Specifying both parameters 'searchStatus' and 'status' at the same time will cause an error. You can specify parameters to filter the results. The result is wrapped with PageData object that allows you to iterate over result set using pagination. See response schema for more details. \n\nAvailable for users with 'TENANT_ADMIN' or 'CUSTOMER_USER' authority." }, "response": [ { "id": "d532363e-8b01-4f4b-8ac6-dc4d2bfbd294", "name": "OK", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/alarm/:entityType/:entityId?searchStatus=ACTIVE&status=CLEARED_UNACK&assigneeId=&pageSize=&page=&textSearch=&sortProperty=startTs&sortOrder=DESC&startTime=&endTime=&fetchOriginator=", "host": [ "{{baseUrl}}" ], "path": [ "api", "alarm", ":entityType", ":entityId" ], "query": [ { "description": "A string value representing one of the AlarmSearchStatus enumeration value", "key": "searchStatus", "value": "ACTIVE" }, { "description": "A string value representing one of the AlarmStatus enumeration value", "key": "status", "value": "CLEARED_UNACK" }, { "description": "A string value representing the assignee user id. For example, '784f394c-42b6-435a-983c-b7beff2784f9'", "key": "assigneeId", "value": "" }, { "description": "(Required) Maximum amount of entities in a one page", "key": "pageSize", "value": "" }, { "description": "(Required) Sequence number of page starting from 0", "key": "page", "value": "" }, { "description": "The case insensitive 'substring' filter based on of next alarm fields: type, severity or status", "key": "textSearch", "value": "" }, { "description": "Property of entity to sort by", "key": "sortProperty", "value": "startTs" }, { "description": "Sort order. ASC (ASCENDING) or DESC (DESCENDING)", "key": "sortOrder", "value": "DESC" }, { "description": "The start timestamp in milliseconds of the search time range over the Alarm class field: 'createdTime'.", "key": "startTime", "value": "" }, { "description": "The end timestamp in milliseconds of the search time range over the Alarm class field: 'createdTime'.", "key": "endTime", "value": "" }, { "description": "A boolean value to specify if the alarm originator name will be filled in the AlarmInfo object field: 'originatorName' or will returns as null.", "key": "fetchOriginator", "value": "" } ], "variable": [ { "key": "entityType" }, { "key": "entityId" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": [\n {\n \"acknowledged\": \"\",\n \"cleared\": \"\",\n \"name\": \"\",\n \"originator\": {\n \"entityType\": \"WIDGET_TYPE\",\n \"id\": \"\"\n },\n \"severity\": \"MINOR\",\n \"status\": \"ACTIVE_UNACK\",\n \"type\": \"\",\n \"id\": {\n \"entityType\": \"ALARM\",\n \"id\": \"\"\n },\n \"createdTime\": \"\",\n \"tenantId\": {\n \"entityType\": \"TENANT\",\n \"id\": \"\"\n },\n \"customerId\": {\n \"entityType\": \"CUSTOMER\",\n \"id\": \"\"\n },\n \"assigneeId\": {\n \"entityType\": \"USER\",\n \"id\": \"\"\n },\n \"startTs\": \"\",\n \"endTs\": \"\",\n \"ackTs\": \"\",\n \"clearTs\": \"\",\n \"assignTs\": \"\",\n \"propagate\": \"\",\n \"propagateToOwner\": \"\",\n \"propagateToTenant\": \"\",\n \"propagateRelationTypes\": [\n \"\",\n \"\"\n ],\n \"originatorName\": \"\",\n \"originatorLabel\": \"\",\n \"originatorDisplayName\": \"\",\n \"assignee\": {\n \"id\": {\n \"entityType\": \"USER\",\n \"id\": \"\"\n },\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\"\n },\n \"details\": {\n \"description\": \"A value representing the any type (object or primitive)\",\n \"examples\": [\n {}\n ]\n }\n },\n {\n \"acknowledged\": \"\",\n \"cleared\": \"\",\n \"name\": \"\",\n \"originator\": {\n \"entityType\": \"ADMIN_SETTINGS\",\n \"id\": \"\"\n },\n \"severity\": \"WARNING\",\n \"status\": \"CLEARED_ACK\",\n \"type\": \"\",\n \"id\": {\n \"entityType\": \"ALARM\",\n \"id\": \"\"\n },\n \"createdTime\": \"\",\n \"tenantId\": {\n \"entityType\": \"TENANT\",\n \"id\": \"\"\n },\n \"customerId\": {\n \"entityType\": \"CUSTOMER\",\n \"id\": \"\"\n },\n \"assigneeId\": {\n \"entityType\": \"USER\",\n \"id\": \"\"\n },\n \"startTs\": \"\",\n \"endTs\": \"\",\n \"ackTs\": \"\",\n \"clearTs\": \"\",\n \"assignTs\": \"\",\n \"propagate\": \"\",\n \"propagateToOwner\": \"\",\n \"propagateToTenant\": \"\",\n \"propagateRelationTypes\": [\n \"\",\n \"\"\n ],\n \"originatorName\": \"\",\n \"originatorLabel\": \"\",\n \"originatorDisplayName\": \"\",\n \"assignee\": {\n \"id\": {\n \"entityType\": \"USER\",\n \"id\": \"\"\n },\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\"\n },\n \"details\": {\n \"description\": \"A value representing the any type (object or primitive)\",\n \"examples\": [\n {}\n ]\n }\n }\n ],\n \"totalPages\": \"\",\n \"totalElements\": \"\",\n \"hasNext\": \"\"\n}", "createdAt": "2026-07-28T03:11:58.000Z", "updatedAt": "2026-07-28T03:11:58.000Z", "uid": "35240-d532363e-8b01-4f4b-8ac6-dc4d2bfbd294" } ], "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-bc6820e2-a35c-41ac-b8a9-011b12736af9" } ], "id": "fcb0c3f4-9262-40d9-a6bb-22a288da2952", "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-fcb0c3f4-9262-40d9-a6bb-22a288da2952" } ], "id": "df9e0dd8-fe98-4e2a-9964-1ab8ce95b98d", "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-df9e0dd8-fe98-4e2a-9964-1ab8ce95b98d" }, { "name": "types", "item": [ { "name": "Get Alarm Types (getAlarmTypes)", "id": "96db2617-89b9-4523-975f-b0f0a5551148", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/alarm/types?pageSize=&page=&textSearch=&sortOrder=DESC", "host": [ "{{baseUrl}}" ], "path": [ "api", "alarm", "types" ], "query": [ { "description": "(Required) Maximum amount of entities in a one page", "key": "pageSize", "value": "" }, { "description": "(Required) Sequence number of page starting from 0", "key": "page", "value": "" }, { "description": "The case insensitive 'substring' filter based on of next alarm fields: type, severity or status", "key": "textSearch", "value": "" }, { "description": "Sort order. ASC (ASCENDING) or DESC (DESCENDING)", "key": "sortOrder", "value": "DESC" } ] }, "description": "Returns a set of unique alarm types based on alarms that are either owned by the tenant or assigned to the customer which user is performing the request." }, "response": [ { "id": "0a792685-6b5c-49ac-beb3-7095b3bf9407", "name": "OK", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/alarm/types?pageSize=&page=&textSearch=&sortOrder=DESC", "host": [ "{{baseUrl}}" ], "path": [ "api", "alarm", "types" ], "query": [ { "description": "(Required) Maximum amount of entities in a one page", "key": "pageSize", "value": "" }, { "description": "(Required) Sequence number of page starting from 0", "key": "page", "value": "" }, { "description": "The case insensitive 'substring' filter based on of next alarm fields: type, severity or status", "key": "textSearch", "value": "" }, { "description": "Sort order. ASC (ASCENDING) or DESC (DESCENDING)", "key": "sortOrder", "value": "DESC" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": [\n {\n \"tenantId\": {\n \"entityType\": \"TENANT\",\n \"id\": \"\"\n },\n \"entityType\": \"TENANT\",\n \"type\": \"\"\n },\n {\n \"tenantId\": {\n \"entityType\": \"TENANT\",\n \"id\": \"\"\n },\n \"entityType\": \"TENANT_PROFILE\",\n \"type\": \"\"\n }\n ],\n \"totalPages\": \"\",\n \"totalElements\": \"\",\n \"hasNext\": \"\"\n}", "createdAt": "2026-07-28T03:11:58.000Z", "updatedAt": "2026-07-28T03:11:58.000Z", "uid": "35240-0a792685-6b5c-49ac-beb3-7095b3bf9407" } ], "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-96db2617-89b9-4523-975f-b0f0a5551148" } ], "id": "3e339e80-3a3a-46f5-ae02-ec79383e73ee", "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-3e339e80-3a3a-46f5-ae02-ec79383e73ee" }, { "name": "info", "item": [ { "name": "{alarmId}", "item": [ { "name": "Get Alarm Info (getAlarmInfoById)", "id": "f0d10541-d5e1-420b-a7d9-d20478a852ca", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/alarm/info/:alarmId", "host": [ "{{baseUrl}}" ], "path": [ "api", "alarm", "info", ":alarmId" ], "variable": [ { "id": "1d357bf5-f599-443a-a9d1-bbef054f15a8", "key": "alarmId", "value": "", "description": "(Required) A string value representing the alarm id. For example, '784f394c-42b6-435a-983c-b7beff2784f9'" } ] }, "description": "Fetch the Alarm Info object based on the provided Alarm Id. If the user has the authority of 'Tenant Administrator', the server checks that the originator of alarm is owned by the same tenant. If the user has the authority of 'Customer User', the server checks that the originator of alarm belongs to the customer. Alarm Info is an extension of the default Alarm object that also contains name of the alarm originator.\n\nAvailable for users with 'TENANT_ADMIN' or 'CUSTOMER_USER' authority." }, "response": [ { "id": "2504724a-6638-4398-88f1-bdc11fecc7e8", "name": "OK", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/alarm/info/:alarmId", "host": [ "{{baseUrl}}" ], "path": [ "api", "alarm", "info", ":alarmId" ], "variable": [ { "key": "alarmId" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"acknowledged\": \"\",\n \"cleared\": \"\",\n \"name\": \"\",\n \"originator\": {\n \"entityType\": \"EDGE\",\n \"id\": \"\"\n },\n \"severity\": \"INDETERMINATE\",\n \"status\": \"CLEARED_UNACK\",\n \"type\": \"\",\n \"id\": {\n \"entityType\": \"ALARM\",\n \"id\": \"\"\n },\n \"createdTime\": \"\",\n \"tenantId\": {\n \"entityType\": \"TENANT\",\n \"id\": \"\"\n },\n \"customerId\": {\n \"entityType\": \"CUSTOMER\",\n \"id\": \"\"\n },\n \"assigneeId\": {\n \"entityType\": \"USER\",\n \"id\": \"\"\n },\n \"startTs\": \"\",\n \"endTs\": \"\",\n \"ackTs\": \"\",\n \"clearTs\": \"\",\n \"assignTs\": \"\",\n \"propagate\": \"\",\n \"propagateToOwner\": \"\",\n \"propagateToTenant\": \"\",\n \"propagateRelationTypes\": [\n \"\",\n \"\"\n ],\n \"originatorName\": \"\",\n \"originatorLabel\": \"\",\n \"originatorDisplayName\": \"\",\n \"assignee\": {\n \"id\": {\n \"entityType\": \"USER\",\n \"id\": \"\"\n },\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\"\n },\n \"details\": {\n \"description\": \"A value representing the any type (object or primitive)\",\n \"examples\": [\n {}\n ]\n }\n}", "createdAt": "2026-07-28T03:11:58.000Z", "updatedAt": "2026-07-28T03:11:58.000Z", "uid": "35240-2504724a-6638-4398-88f1-bdc11fecc7e8" } ], "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-f0d10541-d5e1-420b-a7d9-d20478a852ca" } ], "id": "62ef62fb-8526-4a2f-8f93-db096c884c4d", "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-62ef62fb-8526-4a2f-8f93-db096c884c4d" } ], "id": "58e34633-ee4e-4a92-8664-acb8393fc23e", "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-58e34633-ee4e-4a92-8664-acb8393fc23e" }, { "name": "highestSeverity", "item": [ { "name": "{entityType}", "item": [ { "name": "{entityId}", "item": [ { "name": "Get Highest Alarm Severity (getHighestAlarmSeverity)", "id": "249af6b1-33be-4e2d-a32a-afaa52a833e8", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/alarm/highestSeverity/:entityType/:entityId?searchStatus=ACTIVE&status=CLEARED_UNACK&assigneeId=", "host": [ "{{baseUrl}}" ], "path": [ "api", "alarm", "highestSeverity", ":entityType", ":entityId" ], "query": [ { "description": "A string value representing one of the AlarmSearchStatus enumeration value", "key": "searchStatus", "value": "ACTIVE" }, { "description": "A string value representing one of the AlarmStatus enumeration value", "key": "status", "value": "CLEARED_UNACK" }, { "description": "A string value representing the assignee user id. For example, '784f394c-42b6-435a-983c-b7beff2784f9'", "key": "assigneeId", "value": "" } ], "variable": [ { "id": "4852ba6a-8039-40ee-aed7-c11215e9c4b8", "key": "entityType", "value": "", "description": "(Required) A string value representing the entity type. For example, 'DEVICE'" }, { "id": "2e21e729-e42b-46d2-99de-d883ebd32212", "key": "entityId", "value": "", "description": "(Required) A string value representing the entity id. For example, '784f394c-42b6-435a-983c-b7beff2784f9'" } ] }, "description": "Search the alarms by originator ('entityType' and entityId') and optional 'status' or 'searchStatus' filters and returns the highest AlarmSeverity(CRITICAL, MAJOR, MINOR, WARNING or INDETERMINATE). Specifying both parameters 'searchStatus' and 'status' at the same time will cause an error.\n\nAvailable for users with 'TENANT_ADMIN' or 'CUSTOMER_USER' authority." }, "response": [ { "id": "9076dbe3-545b-4e1b-a6c4-0bed1608749a", "name": "OK", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/alarm/highestSeverity/:entityType/:entityId?searchStatus=ACTIVE&status=CLEARED_UNACK&assigneeId=", "host": [ "{{baseUrl}}" ], "path": [ "api", "alarm", "highestSeverity", ":entityType", ":entityId" ], "query": [ { "description": "A string value representing one of the AlarmSearchStatus enumeration value", "key": "searchStatus", "value": "ACTIVE" }, { "description": "A string value representing one of the AlarmStatus enumeration value", "key": "status", "value": "CLEARED_UNACK" }, { "description": "A string value representing the assignee user id. For example, '784f394c-42b6-435a-983c-b7beff2784f9'", "key": "assigneeId", "value": "" } ], "variable": [ { "key": "entityType" }, { "key": "entityId" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "MINOR", "createdAt": "2026-07-28T03:11:58.000Z", "updatedAt": "2026-07-28T03:11:58.000Z", "uid": "35240-9076dbe3-545b-4e1b-a6c4-0bed1608749a" } ], "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-249af6b1-33be-4e2d-a32a-afaa52a833e8" } ], "id": "fe074fe2-94f7-427a-9222-f3512b2fe2da", "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-fe074fe2-94f7-427a-9222-f3512b2fe2da" } ], "id": "f52d0f9b-2912-4ffa-8ca1-8382c777aaa5", "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-f52d0f9b-2912-4ffa-8ca1-8382c777aaa5" } ], "id": "0b44b3ae-7d16-41ee-856d-02e1536950a9", "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-0b44b3ae-7d16-41ee-856d-02e1536950a9" }, { "name": "Create or Update Alarm (saveAlarm)", "id": "1cfb4cdd-f091-48ad-86d6-3bbe9049566a", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"acknowledged\": \"\",\n \"cleared\": \"\",\n \"name\": \"\",\n \"originator\": {\n \"entityType\": \"EDGE\",\n \"id\": \"\"\n },\n \"severity\": \"CRITICAL\",\n \"status\": \"CLEARED_ACK\",\n \"type\": \"\",\n \"tenantId\": {\n \"entityType\": \"TENANT\",\n \"id\": \"\"\n },\n \"customerId\": {\n \"entityType\": \"CUSTOMER\",\n \"id\": \"\"\n },\n \"assigneeId\": {\n \"entityType\": \"USER\",\n \"id\": \"\"\n },\n \"startTs\": \"\",\n \"endTs\": \"\",\n \"ackTs\": \"\",\n \"clearTs\": \"\",\n \"assignTs\": \"\",\n \"details\": {\n \"description\": \"A value representing the any type (object or primitive)\",\n \"examples\": [\n {}\n ]\n },\n \"propagate\": \"\",\n \"propagateToOwner\": \"\",\n \"propagateToTenant\": \"\",\n \"propagateRelationTypes\": [\n \"\",\n \"\"\n ],\n \"id\": {\n \"entityType\": \"ALARM\",\n \"id\": \"\"\n },\n \"createdTime\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/alarm", "host": [ "{{baseUrl}}" ], "path": [ "api", "alarm" ] }, "description": "Creates or Updates the Alarm. When creating alarm, platform generates Alarm Id as [time-based UUID](https://en.wikipedia.org/wiki/Universally_unique_identifier#Version_1_(date-time_and_MAC_address)). The newly created Alarm id will be present in the response. Specify existing Alarm id to update the alarm. Referencing non-existing Alarm Id will cause 'Not Found' error. \n\nPlatform also deduplicate the alarms based on the entity id of originator and alarm 'type'. For example, if the user or system component create the alarm with the type 'HighTemperature' for device 'Device A' the new active alarm is created. If the user tries to create 'HighTemperature' alarm for the same device again, the previous alarm will be updated (the 'end_ts' will be set to current timestamp). If the user clears the alarm (see 'Clear Alarm(clearAlarm)'), than new alarm with the same type and same device may be created. Remove 'id', 'tenantId' and optionally 'customerId' from the request body example (below) to create new Alarm entity. \n\nAvailable for users with 'TENANT_ADMIN' or 'CUSTOMER_USER' authority." }, "response": [ { "id": "eb99dbcf-c1cc-4dbd-9cd0-058f90848439", "name": "OK", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"acknowledged\": \"\",\n \"cleared\": \"\",\n \"name\": \"\",\n \"originator\": {\n \"entityType\": \"EDGE\",\n \"id\": \"\"\n },\n \"severity\": \"CRITICAL\",\n \"status\": \"CLEARED_ACK\",\n \"type\": \"\",\n \"tenantId\": {\n \"entityType\": \"TENANT\",\n \"id\": \"\"\n },\n \"customerId\": {\n \"entityType\": \"CUSTOMER\",\n \"id\": \"\"\n },\n \"assigneeId\": {\n \"entityType\": \"USER\",\n \"id\": \"\"\n },\n \"startTs\": \"\",\n \"endTs\": \"\",\n \"ackTs\": \"\",\n \"clearTs\": \"\",\n \"assignTs\": \"\",\n \"details\": {\n \"description\": \"A value representing the any type (object or primitive)\",\n \"examples\": [\n {}\n ]\n },\n \"propagate\": \"\",\n \"propagateToOwner\": \"\",\n \"propagateToTenant\": \"\",\n \"propagateRelationTypes\": [\n \"\",\n \"\"\n ],\n \"id\": {\n \"entityType\": \"ALARM\",\n \"id\": \"\"\n },\n \"createdTime\": \"\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/alarm", "host": [ "{{baseUrl}}" ], "path": [ "api", "alarm" ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"acknowledged\": \"\",\n \"cleared\": \"\",\n \"name\": \"\",\n \"originator\": {\n \"entityType\": \"EDGE\",\n \"id\": \"\"\n },\n \"severity\": \"CRITICAL\",\n \"status\": \"CLEARED_ACK\",\n \"type\": \"\",\n \"tenantId\": {\n \"entityType\": \"TENANT\",\n \"id\": \"\"\n },\n \"customerId\": {\n \"entityType\": \"CUSTOMER\",\n \"id\": \"\"\n },\n \"assigneeId\": {\n \"entityType\": \"USER\",\n \"id\": \"\"\n },\n \"startTs\": \"\",\n \"endTs\": \"\",\n \"ackTs\": \"\",\n \"clearTs\": \"\",\n \"assignTs\": \"\",\n \"details\": {\n \"description\": \"A value representing the any type (object or primitive)\",\n \"examples\": [\n {}\n ]\n },\n \"propagate\": \"\",\n \"propagateToOwner\": \"\",\n \"propagateToTenant\": \"\",\n \"propagateRelationTypes\": [\n \"\",\n \"\"\n ],\n \"id\": {\n \"entityType\": \"ALARM\",\n \"id\": \"\"\n },\n \"createdTime\": \"\"\n}", "createdAt": "2026-07-28T03:11:58.000Z", "updatedAt": "2026-07-28T03:11:58.000Z", "uid": "35240-eb99dbcf-c1cc-4dbd-9cd0-058f90848439" } ], "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-1cfb4cdd-f091-48ad-86d6-3bbe9049566a" } ], "id": "77b8a63f-5eec-442e-8e7a-eb9944a7d5eb", "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-77b8a63f-5eec-442e-8e7a-eb9944a7d5eb" }, { "name": "v2", "item": [ { "name": "alarms", "item": [ { "name": "Get All Alarms (getAllAlarmsV2)", "id": "a1cf0823-8729-42e3-8a77-7ab322acf325", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/v2/alarms?statusList=CLEARED&statusList=ACK&severityList=MAJOR&severityList=MINOR&typeList=&typeList=&assigneeId=&pageSize=&page=&textSearch=&sortProperty=startTs&sortOrder=DESC&startTime=&endTime=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v2", "alarms" ], "query": [ { "description": "A list of string values separated by comma ',' representing one of the AlarmSearchStatus enumeration value", "key": "statusList", "value": "CLEARED" }, { "description": "A list of string values separated by comma ',' representing one of the AlarmSearchStatus enumeration value", "key": "statusList", "value": "ACK" }, { "description": "A list of string values separated by comma ',' representing one of the AlarmSeverity enumeration value", "key": "severityList", "value": "MAJOR" }, { "description": "A list of string values separated by comma ',' representing one of the AlarmSeverity enumeration value", "key": "severityList", "value": "MINOR" }, { "description": "A list of string values separated by comma ',' representing alarm types", "key": "typeList", "value": "" }, { "description": "A list of string values separated by comma ',' representing alarm types", "key": "typeList", "value": "" }, { "description": "A string value representing the assignee user id. For example, '784f394c-42b6-435a-983c-b7beff2784f9'", "key": "assigneeId", "value": "" }, { "description": "(Required) Maximum amount of entities in a one page", "key": "pageSize", "value": "" }, { "description": "(Required) Sequence number of page starting from 0", "key": "page", "value": "" }, { "description": "The case insensitive 'substring' filter based on of next alarm fields: type, severity or status", "key": "textSearch", "value": "" }, { "description": "Property of entity to sort by", "key": "sortProperty", "value": "startTs" }, { "description": "Sort order. ASC (ASCENDING) or DESC (DESCENDING)", "key": "sortOrder", "value": "DESC" }, { "description": "The start timestamp in milliseconds of the search time range over the Alarm class field: 'createdTime'.", "key": "startTime", "value": "" }, { "description": "The end timestamp in milliseconds of the search time range over the Alarm class field: 'createdTime'.", "key": "endTime", "value": "" } ] }, "description": "Returns a page of alarms that belongs to the current user owner. If the user has the authority of 'Tenant Administrator', the server returns alarms that belongs to the tenant of current user. If the user has the authority of 'Customer User', the server returns alarms that belongs to the customer of current user. You can specify parameters to filter the results. The result is wrapped with PageData object that allows you to iterate over result set using pagination. See response schema for more details. \n\nAvailable for users with 'TENANT_ADMIN' or 'CUSTOMER_USER' authority." }, "response": [ { "id": "73c9031b-cbdc-4f9f-95b6-05bd099d67a7", "name": "OK", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/v2/alarms?statusList=ACK&severityList=MINOR&typeList=&assigneeId=&pageSize=&page=&textSearch=&sortProperty=startTs&sortOrder=DESC&startTime=&endTime=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v2", "alarms" ], "query": [ { "description": "A list of string values separated by comma ',' representing one of the AlarmSearchStatus enumeration value", "key": "statusList", "value": "ACK" }, { "description": "A list of string values separated by comma ',' representing one of the AlarmSeverity enumeration value", "key": "severityList", "value": "MINOR" }, { "description": "A list of string values separated by comma ',' representing alarm types", "key": "typeList", "value": "" }, { "description": "A string value representing the assignee user id. For example, '784f394c-42b6-435a-983c-b7beff2784f9'", "key": "assigneeId", "value": "" }, { "description": "(Required) Maximum amount of entities in a one page", "key": "pageSize", "value": "" }, { "description": "(Required) Sequence number of page starting from 0", "key": "page", "value": "" }, { "description": "The case insensitive 'substring' filter based on of next alarm fields: type, severity or status", "key": "textSearch", "value": "" }, { "description": "Property of entity to sort by", "key": "sortProperty", "value": "startTs" }, { "description": "Sort order. ASC (ASCENDING) or DESC (DESCENDING)", "key": "sortOrder", "value": "DESC" }, { "description": "The start timestamp in milliseconds of the search time range over the Alarm class field: 'createdTime'.", "key": "startTime", "value": "" }, { "description": "The end timestamp in milliseconds of the search time range over the Alarm class field: 'createdTime'.", "key": "endTime", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": [\n {\n \"acknowledged\": \"\",\n \"cleared\": \"\",\n \"name\": \"\",\n \"originator\": {\n \"entityType\": \"WIDGET_TYPE\",\n \"id\": \"\"\n },\n \"severity\": \"MINOR\",\n \"status\": \"ACTIVE_UNACK\",\n \"type\": \"\",\n \"id\": {\n \"entityType\": \"ALARM\",\n \"id\": \"\"\n },\n \"createdTime\": \"\",\n \"tenantId\": {\n \"entityType\": \"TENANT\",\n \"id\": \"\"\n },\n \"customerId\": {\n \"entityType\": \"CUSTOMER\",\n \"id\": \"\"\n },\n \"assigneeId\": {\n \"entityType\": \"USER\",\n \"id\": \"\"\n },\n \"startTs\": \"\",\n \"endTs\": \"\",\n \"ackTs\": \"\",\n \"clearTs\": \"\",\n \"assignTs\": \"\",\n \"propagate\": \"\",\n \"propagateToOwner\": \"\",\n \"propagateToTenant\": \"\",\n \"propagateRelationTypes\": [\n \"\",\n \"\"\n ],\n \"originatorName\": \"\",\n \"originatorLabel\": \"\",\n \"originatorDisplayName\": \"\",\n \"assignee\": {\n \"id\": {\n \"entityType\": \"USER\",\n \"id\": \"\"\n },\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\"\n },\n \"details\": {\n \"description\": \"A value representing the any type (object or primitive)\",\n \"examples\": [\n {}\n ]\n }\n },\n {\n \"acknowledged\": \"\",\n \"cleared\": \"\",\n \"name\": \"\",\n \"originator\": {\n \"entityType\": \"ADMIN_SETTINGS\",\n \"id\": \"\"\n },\n \"severity\": \"WARNING\",\n \"status\": \"CLEARED_ACK\",\n \"type\": \"\",\n \"id\": {\n \"entityType\": \"ALARM\",\n \"id\": \"\"\n },\n \"createdTime\": \"\",\n \"tenantId\": {\n \"entityType\": \"TENANT\",\n \"id\": \"\"\n },\n \"customerId\": {\n \"entityType\": \"CUSTOMER\",\n \"id\": \"\"\n },\n \"assigneeId\": {\n \"entityType\": \"USER\",\n \"id\": \"\"\n },\n \"startTs\": \"\",\n \"endTs\": \"\",\n \"ackTs\": \"\",\n \"clearTs\": \"\",\n \"assignTs\": \"\",\n \"propagate\": \"\",\n \"propagateToOwner\": \"\",\n \"propagateToTenant\": \"\",\n \"propagateRelationTypes\": [\n \"\",\n \"\"\n ],\n \"originatorName\": \"\",\n \"originatorLabel\": \"\",\n \"originatorDisplayName\": \"\",\n \"assignee\": {\n \"id\": {\n \"entityType\": \"USER\",\n \"id\": \"\"\n },\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\"\n },\n \"details\": {\n \"description\": \"A value representing the any type (object or primitive)\",\n \"examples\": [\n {}\n ]\n }\n }\n ],\n \"totalPages\": \"\",\n \"totalElements\": \"\",\n \"hasNext\": \"\"\n}", "createdAt": "2026-07-28T03:11:58.000Z", "updatedAt": "2026-07-28T03:11:58.000Z", "uid": "35240-73c9031b-cbdc-4f9f-95b6-05bd099d67a7" } ], "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-a1cf0823-8729-42e3-8a77-7ab322acf325" } ], "id": "3ae5f729-d127-47a4-97b2-5e7069f1f80e", "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-3ae5f729-d127-47a4-97b2-5e7069f1f80e" }, { "name": "alarm", "item": [ { "name": "{entityType}", "item": [ { "name": "{entityId}", "item": [ { "name": "Get Alarms (getAlarmsV2)", "id": "bf05a729-cfa2-4e93-bba1-032767d79b56", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/v2/alarm/:entityType/:entityId?statusList=CLEARED&statusList=ACK&severityList=MAJOR&severityList=MINOR&typeList=&typeList=&assigneeId=&pageSize=&page=&textSearch=&sortProperty=startTs&sortOrder=DESC&startTime=&endTime=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v2", "alarm", ":entityType", ":entityId" ], "query": [ { "description": "A list of string values separated by comma ',' representing one of the AlarmSearchStatus enumeration value", "key": "statusList", "value": "CLEARED" }, { "description": "A list of string values separated by comma ',' representing one of the AlarmSearchStatus enumeration value", "key": "statusList", "value": "ACK" }, { "description": "A list of string values separated by comma ',' representing one of the AlarmSeverity enumeration value", "key": "severityList", "value": "MAJOR" }, { "description": "A list of string values separated by comma ',' representing one of the AlarmSeverity enumeration value", "key": "severityList", "value": "MINOR" }, { "description": "A list of string values separated by comma ',' representing alarm types", "key": "typeList", "value": "" }, { "description": "A list of string values separated by comma ',' representing alarm types", "key": "typeList", "value": "" }, { "description": "A string value representing the assignee user id. For example, '784f394c-42b6-435a-983c-b7beff2784f9'", "key": "assigneeId", "value": "" }, { "description": "(Required) Maximum amount of entities in a one page", "key": "pageSize", "value": "" }, { "description": "(Required) Sequence number of page starting from 0", "key": "page", "value": "" }, { "description": "The case insensitive 'substring' filter based on of next alarm fields: type, severity or status", "key": "textSearch", "value": "" }, { "description": "Property of entity to sort by", "key": "sortProperty", "value": "startTs" }, { "description": "Sort order. ASC (ASCENDING) or DESC (DESCENDING)", "key": "sortOrder", "value": "DESC" }, { "description": "The start timestamp in milliseconds of the search time range over the Alarm class field: 'createdTime'.", "key": "startTime", "value": "" }, { "description": "The end timestamp in milliseconds of the search time range over the Alarm class field: 'createdTime'.", "key": "endTime", "value": "" } ], "variable": [ { "id": "e49f44d0-6afa-4b3f-85dd-dc5e0340fd2b", "key": "entityType", "value": "", "description": "(Required) A string value representing the entity type. For example, 'DEVICE'" }, { "id": "022941a1-b45e-440b-8b0b-1adf17a92074", "key": "entityId", "value": "", "description": "(Required) A string value representing the entity id. For example, '784f394c-42b6-435a-983c-b7beff2784f9'" } ] }, "description": "Returns a page of alarms for the selected entity. You can specify parameters to filter the results. The result is wrapped with PageData object that allows you to iterate over result set using pagination. See response schema for more details. \n\nAvailable for users with 'TENANT_ADMIN' or 'CUSTOMER_USER' authority." }, "response": [ { "id": "1dfdbd10-1dc8-40cd-8806-a5f3952d2f70", "name": "OK", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/v2/alarm/:entityType/:entityId?statusList=ACK&severityList=MINOR&typeList=&assigneeId=&pageSize=&page=&textSearch=&sortProperty=startTs&sortOrder=DESC&startTime=&endTime=", "host": [ "{{baseUrl}}" ], "path": [ "api", "v2", "alarm", ":entityType", ":entityId" ], "query": [ { "description": "A list of string values separated by comma ',' representing one of the AlarmSearchStatus enumeration value", "key": "statusList", "value": "ACK" }, { "description": "A list of string values separated by comma ',' representing one of the AlarmSeverity enumeration value", "key": "severityList", "value": "MINOR" }, { "description": "A list of string values separated by comma ',' representing alarm types", "key": "typeList", "value": "" }, { "description": "A string value representing the assignee user id. For example, '784f394c-42b6-435a-983c-b7beff2784f9'", "key": "assigneeId", "value": "" }, { "description": "(Required) Maximum amount of entities in a one page", "key": "pageSize", "value": "" }, { "description": "(Required) Sequence number of page starting from 0", "key": "page", "value": "" }, { "description": "The case insensitive 'substring' filter based on of next alarm fields: type, severity or status", "key": "textSearch", "value": "" }, { "description": "Property of entity to sort by", "key": "sortProperty", "value": "startTs" }, { "description": "Sort order. ASC (ASCENDING) or DESC (DESCENDING)", "key": "sortOrder", "value": "DESC" }, { "description": "The start timestamp in milliseconds of the search time range over the Alarm class field: 'createdTime'.", "key": "startTime", "value": "" }, { "description": "The end timestamp in milliseconds of the search time range over the Alarm class field: 'createdTime'.", "key": "endTime", "value": "" } ], "variable": [ { "key": "entityType" }, { "key": "entityId" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": [\n {\n \"acknowledged\": \"\",\n \"cleared\": \"\",\n \"name\": \"\",\n \"originator\": {\n \"entityType\": \"WIDGET_TYPE\",\n \"id\": \"\"\n },\n \"severity\": \"MINOR\",\n \"status\": \"ACTIVE_UNACK\",\n \"type\": \"\",\n \"id\": {\n \"entityType\": \"ALARM\",\n \"id\": \"\"\n },\n \"createdTime\": \"\",\n \"tenantId\": {\n \"entityType\": \"TENANT\",\n \"id\": \"\"\n },\n \"customerId\": {\n \"entityType\": \"CUSTOMER\",\n \"id\": \"\"\n },\n \"assigneeId\": {\n \"entityType\": \"USER\",\n \"id\": \"\"\n },\n \"startTs\": \"\",\n \"endTs\": \"\",\n \"ackTs\": \"\",\n \"clearTs\": \"\",\n \"assignTs\": \"\",\n \"propagate\": \"\",\n \"propagateToOwner\": \"\",\n \"propagateToTenant\": \"\",\n \"propagateRelationTypes\": [\n \"\",\n \"\"\n ],\n \"originatorName\": \"\",\n \"originatorLabel\": \"\",\n \"originatorDisplayName\": \"\",\n \"assignee\": {\n \"id\": {\n \"entityType\": \"USER\",\n \"id\": \"\"\n },\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\"\n },\n \"details\": {\n \"description\": \"A value representing the any type (object or primitive)\",\n \"examples\": [\n {}\n ]\n }\n },\n {\n \"acknowledged\": \"\",\n \"cleared\": \"\",\n \"name\": \"\",\n \"originator\": {\n \"entityType\": \"ADMIN_SETTINGS\",\n \"id\": \"\"\n },\n \"severity\": \"WARNING\",\n \"status\": \"CLEARED_ACK\",\n \"type\": \"\",\n \"id\": {\n \"entityType\": \"ALARM\",\n \"id\": \"\"\n },\n \"createdTime\": \"\",\n \"tenantId\": {\n \"entityType\": \"TENANT\",\n \"id\": \"\"\n },\n \"customerId\": {\n \"entityType\": \"CUSTOMER\",\n \"id\": \"\"\n },\n \"assigneeId\": {\n \"entityType\": \"USER\",\n \"id\": \"\"\n },\n \"startTs\": \"\",\n \"endTs\": \"\",\n \"ackTs\": \"\",\n \"clearTs\": \"\",\n \"assignTs\": \"\",\n \"propagate\": \"\",\n \"propagateToOwner\": \"\",\n \"propagateToTenant\": \"\",\n \"propagateRelationTypes\": [\n \"\",\n \"\"\n ],\n \"originatorName\": \"\",\n \"originatorLabel\": \"\",\n \"originatorDisplayName\": \"\",\n \"assignee\": {\n \"id\": {\n \"entityType\": \"USER\",\n \"id\": \"\"\n },\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\"\n },\n \"details\": {\n \"description\": \"A value representing the any type (object or primitive)\",\n \"examples\": [\n {}\n ]\n }\n }\n ],\n \"totalPages\": \"\",\n \"totalElements\": \"\",\n \"hasNext\": \"\"\n}", "createdAt": "2026-07-28T03:11:58.000Z", "updatedAt": "2026-07-28T03:11:58.000Z", "uid": "35240-1dfdbd10-1dc8-40cd-8806-a5f3952d2f70" } ], "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-bf05a729-cfa2-4e93-bba1-032767d79b56" } ], "id": "2ae75a28-a32c-4d09-8eb8-e099f4e9c561", "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-2ae75a28-a32c-4d09-8eb8-e099f4e9c561" } ], "id": "552998b6-e185-4044-a57b-8532e579eead", "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-552998b6-e185-4044-a57b-8532e579eead" } ], "id": "94abe79e-1b0d-4209-ad53-b0af1e232456", "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-94abe79e-1b0d-4209-ad53-b0af1e232456" } ], "id": "7de55b14-4276-48d7-beed-3da6c1fc5467", "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-7de55b14-4276-48d7-beed-3da6c1fc5467" }, { "name": "alarms", "item": [ { "name": "Get All Alarms (getAllAlarms)", "id": "44131ac2-ee74-44ac-9df7-045e88660cc8", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/alarms?searchStatus=ACTIVE&status=CLEARED_UNACK&assigneeId=&pageSize=&page=&textSearch=&sortProperty=startTs&sortOrder=DESC&startTime=&endTime=&fetchOriginator=", "host": [ "{{baseUrl}}" ], "path": [ "api", "alarms" ], "query": [ { "description": "A string value representing one of the AlarmSearchStatus enumeration value", "key": "searchStatus", "value": "ACTIVE" }, { "description": "A string value representing one of the AlarmStatus enumeration value", "key": "status", "value": "CLEARED_UNACK" }, { "description": "A string value representing the assignee user id. For example, '784f394c-42b6-435a-983c-b7beff2784f9'", "key": "assigneeId", "value": "" }, { "description": "(Required) Maximum amount of entities in a one page", "key": "pageSize", "value": "" }, { "description": "(Required) Sequence number of page starting from 0", "key": "page", "value": "" }, { "description": "The case insensitive 'substring' filter based on of next alarm fields: type, severity or status", "key": "textSearch", "value": "" }, { "description": "Property of entity to sort by", "key": "sortProperty", "value": "startTs" }, { "description": "Sort order. ASC (ASCENDING) or DESC (DESCENDING)", "key": "sortOrder", "value": "DESC" }, { "description": "The start timestamp in milliseconds of the search time range over the Alarm class field: 'createdTime'.", "key": "startTime", "value": "" }, { "description": "The end timestamp in milliseconds of the search time range over the Alarm class field: 'createdTime'.", "key": "endTime", "value": "" }, { "description": "A boolean value to specify if the alarm originator name will be filled in the AlarmInfo object field: 'originatorName' or will returns as null.", "key": "fetchOriginator", "value": "" } ] }, "description": "Returns a page of alarms that belongs to the current user owner. If the user has the authority of 'Tenant Administrator', the server returns alarms that belongs to the tenant of current user. If the user has the authority of 'Customer User', the server returns alarms that belongs to the customer of current user. Specifying both parameters 'searchStatus' and 'status' at the same time will cause an error. You can specify parameters to filter the results. The result is wrapped with PageData object that allows you to iterate over result set using pagination. See response schema for more details. \n\nAvailable for users with 'TENANT_ADMIN' or 'CUSTOMER_USER' authority." }, "response": [ { "id": "39384626-063c-4fed-8301-44e5173fdfda", "name": "OK", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/api/alarms?searchStatus=ACTIVE&status=CLEARED_UNACK&assigneeId=&pageSize=&page=&textSearch=&sortProperty=startTs&sortOrder=DESC&startTime=&endTime=&fetchOriginator=", "host": [ "{{baseUrl}}" ], "path": [ "api", "alarms" ], "query": [ { "description": "A string value representing one of the AlarmSearchStatus enumeration value", "key": "searchStatus", "value": "ACTIVE" }, { "description": "A string value representing one of the AlarmStatus enumeration value", "key": "status", "value": "CLEARED_UNACK" }, { "description": "A string value representing the assignee user id. For example, '784f394c-42b6-435a-983c-b7beff2784f9'", "key": "assigneeId", "value": "" }, { "description": "(Required) Maximum amount of entities in a one page", "key": "pageSize", "value": "" }, { "description": "(Required) Sequence number of page starting from 0", "key": "page", "value": "" }, { "description": "The case insensitive 'substring' filter based on of next alarm fields: type, severity or status", "key": "textSearch", "value": "" }, { "description": "Property of entity to sort by", "key": "sortProperty", "value": "startTs" }, { "description": "Sort order. ASC (ASCENDING) or DESC (DESCENDING)", "key": "sortOrder", "value": "DESC" }, { "description": "The start timestamp in milliseconds of the search time range over the Alarm class field: 'createdTime'.", "key": "startTime", "value": "" }, { "description": "The end timestamp in milliseconds of the search time range over the Alarm class field: 'createdTime'.", "key": "endTime", "value": "" }, { "description": "A boolean value to specify if the alarm originator name will be filled in the AlarmInfo object field: 'originatorName' or will returns as null.", "key": "fetchOriginator", "value": "" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": [\n {\n \"acknowledged\": \"\",\n \"cleared\": \"\",\n \"name\": \"\",\n \"originator\": {\n \"entityType\": \"WIDGET_TYPE\",\n \"id\": \"\"\n },\n \"severity\": \"MINOR\",\n \"status\": \"ACTIVE_UNACK\",\n \"type\": \"\",\n \"id\": {\n \"entityType\": \"ALARM\",\n \"id\": \"\"\n },\n \"createdTime\": \"\",\n \"tenantId\": {\n \"entityType\": \"TENANT\",\n \"id\": \"\"\n },\n \"customerId\": {\n \"entityType\": \"CUSTOMER\",\n \"id\": \"\"\n },\n \"assigneeId\": {\n \"entityType\": \"USER\",\n \"id\": \"\"\n },\n \"startTs\": \"\",\n \"endTs\": \"\",\n \"ackTs\": \"\",\n \"clearTs\": \"\",\n \"assignTs\": \"\",\n \"propagate\": \"\",\n \"propagateToOwner\": \"\",\n \"propagateToTenant\": \"\",\n \"propagateRelationTypes\": [\n \"\",\n \"\"\n ],\n \"originatorName\": \"\",\n \"originatorLabel\": \"\",\n \"originatorDisplayName\": \"\",\n \"assignee\": {\n \"id\": {\n \"entityType\": \"USER\",\n \"id\": \"\"\n },\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\"\n },\n \"details\": {\n \"description\": \"A value representing the any type (object or primitive)\",\n \"examples\": [\n {}\n ]\n }\n },\n {\n \"acknowledged\": \"\",\n \"cleared\": \"\",\n \"name\": \"\",\n \"originator\": {\n \"entityType\": \"ADMIN_SETTINGS\",\n \"id\": \"\"\n },\n \"severity\": \"WARNING\",\n \"status\": \"CLEARED_ACK\",\n \"type\": \"\",\n \"id\": {\n \"entityType\": \"ALARM\",\n \"id\": \"\"\n },\n \"createdTime\": \"\",\n \"tenantId\": {\n \"entityType\": \"TENANT\",\n \"id\": \"\"\n },\n \"customerId\": {\n \"entityType\": \"CUSTOMER\",\n \"id\": \"\"\n },\n \"assigneeId\": {\n \"entityType\": \"USER\",\n \"id\": \"\"\n },\n \"startTs\": \"\",\n \"endTs\": \"\",\n \"ackTs\": \"\",\n \"clearTs\": \"\",\n \"assignTs\": \"\",\n \"propagate\": \"\",\n \"propagateToOwner\": \"\",\n \"propagateToTenant\": \"\",\n \"propagateRelationTypes\": [\n \"\",\n \"\"\n ],\n \"originatorName\": \"\",\n \"originatorLabel\": \"\",\n \"originatorDisplayName\": \"\",\n \"assignee\": {\n \"id\": {\n \"entityType\": \"USER\",\n \"id\": \"\"\n },\n \"firstName\": \"\",\n \"lastName\": \"\",\n \"email\": \"\"\n },\n \"details\": {\n \"description\": \"A value representing the any type (object or primitive)\",\n \"examples\": [\n {}\n ]\n }\n }\n ],\n \"totalPages\": \"\",\n \"totalElements\": \"\",\n \"hasNext\": \"\"\n}", "createdAt": "2026-07-28T03:11:58.000Z", "updatedAt": "2026-07-28T03:11:58.000Z", "uid": "35240-39384626-063c-4fed-8301-44e5173fdfda" } ], "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-44131ac2-ee74-44ac-9df7-045e88660cc8" } ], "id": "84ea43d7-25ea-4e87-bc20-8dd64620a8d9", "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-84ea43d7-25ea-4e87-bc20-8dd64620a8d9" } ], "id": "f81e5cb8-1645-4eac-b99f-ad76b576e33d", "createdAt": "2026-07-28T03:11:57.000Z", "updatedAt": "2026-07-28T03:11:57.000Z", "uid": "35240-f81e5cb8-1645-4eac-b99f-ad76b576e33d" } ], "variable": [ { "key": "baseUrl", "value": "https://demo.thingsboard.io" } ] }