Apple MDM On/Off Status Check
This service is used to query the MDMLock status of Apple devices, in order to determine whether the device is under enterprise supervision (supporting IMEI/SN query)
Concurrent / Thread Count
For queries that take more than 1 second,
the concurrent / thread count should be controlled within 10 or less.
Reason: Excessive concurrency can cause the system to directly return a failure.
Example of successful request return
{
'code': 0,
'data': {
'mdmlock': 'off', //off/on
'model': 'IPHONE 16 PRO MAX 沙漠色钛金属 512GB',
'sn': 'M7CWP6R3QY', //SN
'modelDesc': 'IPHONE 16 PRO NATURAL 256GB-CHN', //description
}
}