Can I hand Matter commissioning over to the Home App?

Instead of using the MatterSupport framework to commission a device, I'd much rather throw the process over to the Home App if possible. I noticed that if I open my camera app and scan a Matter QR code, that starts the process to commission the device in the Home App. That means the Home App must be able to handle a url scheme with the QR code details. Is this available for developers to deep link into the Home App?

Launching the QR code as a url itself does not work so Apple Home isn't capturing the MT url scheme. Otherwise I can open Apple Home with com.apple.home:// but have no idea what params would need to be passed to that scheme.

if let url = URL(string: "MT:E9.01EEI141RUX5.210") {
     UIApplication.shared.open(url) { result in print(result) }
}

Is there something in the documentation I'm missing that allows for this?

Can I hand Matter commissioning over to the Home App?
 
 
Q