Check whether a device activation is still valid
POST
/v1/licensing/check
const url = 'https://api.extport.dev/api/v1/licensing/check';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"code":"example","extensionId":"example","fingerprint":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://api.extport.dev/api/v1/licensing/check \ --header 'Content-Type: application/json' \ --data '{ "code": "example", "extensionId": "example", "fingerprint": "example" }'Public endpoint; also the heartbeat that keeps a seat alive. Never activates a new device.
Request Bodyrequired
Section titled “Request Bodyrequired”Media typeapplication/json
object
code
required
string
extensionId
required
string
fingerprint
required
string
Examplegenerated
{ "code": "example", "extensionId": "example", "fingerprint": "example"}Responses
Section titled “Responses”Result (isActive in body)
Licensing not enabled