How to enable push notification settings for PWA app with App Restriction payload?

Push notification for PWA app is supported on iOS >= 16.4.

I want to restrict app usage using Restriction payload of configuration profile. Formerly we could it by defining a restriction like this. (actually via MDM)

			<key>whitelistedAppBundleIDs</key>
			<array>
				<string>com.apple.webapp</string>
			</array>

However on iOS >= 17.0, the notification setting of the PWA app is disappeared!!

Without the restriction payload, or with the restriction payload without whitelistedAppBundleIDs, the notification setting for the PWA app is shown as expected.


Also we discovered that the issue can be avoided by adding com.apple.WebKit.PushBundle.xxxxxx into the restriction payload.

			<key>whitelistedAppBundleIDs</key>
			<array>
				<string>com.apple.webapp</string>
				<string>com.apple.WebKit.PushBundle.7880D99FB56F4FF7B5DC019E0EDBCBD0</string>
			</array>

com.apple.WebKit.PushBundle.7880D99FB56F4FF7B5DC019E0EDBCBD0 can be found with console log using Apple Configurator. However it cannot be found via MDM command (ex. InstalledApplicationList). We want to configure and install the restriction payload into multiple devices via MDM. So how can we know the com.apple.WebKit.PushBundle.xxxxxx via MDM? or how can we enable push notification settings for PWA apps with restriction payload?

Thank you

How to enable push notification settings for PWA app with App Restriction payload?
 
 
Q