1# App Access Control Subsystem ChangeLog 2 3OpenHarmony 4.0.3.2 has the following changes in the APIs of the app access control subsystem: 4 5## cl.access_token.1 getPermissionUsedRecords Name Change 6 7Changed **getPermissionUsedRecords** to **getPermissionUsedRecord**. 8 9**Change Impact** 10 11The **getPermissionUsedRecords()** API cannot be used in OpenHarmony 4.0.3.3 and later versions. 12 13**Key API/Component Changes** 14 15- Involved APIs: 16 17 function getPermissionUsedRecords 18 19- Before change: 20 21 ```ts 22 function getPermissionUsedRecords 23 ``` 24 25- After change: 26 27 ```ts 28 function getPermissionUsedRecord 29 ``` 30 31**Adaptation Guide** 32 33Use **getPermissionUsedRecord()**. 34