Last updated 1 day ago
Success
true
const response = await fetch('http://localhost/v2/device/license/activation/status', { method: 'GET', headers: {}, }); const data = await response.json();
{ "isValid": true }
const response = await fetch('http://localhost/v2/device/license/activation', { method: 'POST', headers: {}, }); const data = await response.json();
{ "additionalInfo": "text" }
"Serialnumber"
const response = await fetch('http://localhost/v2/device/license/info', { method: 'GET', headers: {}, }); const data = await response.json();
{ "type": "Serialnumber", "license": "text", "sessionId": { "id": "text", "timestamp": 0 } }
Accepted
17
const response = await fetch('http://localhost/v2/device/onboarding', { method: 'POST', headers: { "Content-Type": "application/json" }, }); const data = await response.json();
{ "jobId": 17 }