Skip to main content

ValidateLicense

Response-body reference for POST /validate_license.

Example

{
"success": true,
"message": null,
"data": {
"license_key": "<redacted>",
"valid": true,
"license_type": "Internet",
"permissions": {
"max_streams": 100,
"images": true,
"live_video": true,
"archived_video": true,
"archive_search": true,
"live_search": true,
"face_recognition": true
}
}
}

The response shape matches GET /get_license_status after successful validation.

Fields

FieldTypeDescription
successbooleanIndicates whether the request succeeded.
messagestringOptional server message.
data.license_keystringConfigured license key. Treat this value as sensitive.
data.validbooleanWhether the validated license is valid.
data.license_typestringLicense mode reported by the server, such as Internet or Air-gapped.
data.permissionsobjectLicense permission flags and limits.