-
-
Notifications
You must be signed in to change notification settings - Fork 7
Acquire new Measdata
Elias Ruemmler edited this page Oct 11, 2019
·
2 revisions
Perform a new hardware measurement. The measdata can fetched with the api\fetch
call.
/api/aqc
GET
None
None
200 OK
{
"task": {
"id": 1,
"Name": "AcquireMeasdata",
"href": ""
}
}
None
$.ajax({
url: "/api/acq",
dataType: "json",
type : "GET",
success : function(r) {
console.log(r);
}
});