temperature-alarm/frontend/services/temperature-logs.service.js
2025-03-18 10:53:17 +01:00

14 lines
449 B
JavaScript

const address = "http://10.135.51.116/temperature-alarm-webapi/temperature-logs"
function getOnDeviceIds(ids) {
fetch(`${address}/get-on-device-ids`, {
method: "GET",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({ ids: ids })
})
.then(response => response.json())
.then(data => console.log("Success:", data))
.catch(error => console.error("Error:", error));
}