Credential offers, presentation requests and DIDComm invitations now include direct deeplink URIs in their API responses, alongside the existing universal-link based offerUri / authorizationRequestUri / invitationUri.
Until now these URIs pointed to a Paradym (or custom wallet) invitation page, which then deeplinks into the wallet. In some flows you might want to directly link into the wallet outside of the Paradym invitation page.
The new fields give you the raw scheme directly:
- OpenID4VC issuance offer:
offerDeeplinkUri(openid-credential-offer://…) andofferDeeplinkQrUri - OpenID4VC presentation request:
authorizationRequestDeeplinkUri(openid4vp://…) andauthorizationRequestDeeplinkQrUri - DIDComm invitation:
invitationDeeplinkUri(didcomm://…) andinvitationDeeplinkQrUri
The …DeeplinkUri fields are plain deeplink strings you can place behind a button or render into your own QR code. The …DeeplinkQrUri fields return a QR code image (like the existing …QrUri) whose contents are the deeplink instead of the universal link.
These fields are additive and non-breaking, existing integrations keep working unchanged. See Issue credentials and Verify credentials, or the API Reference for more information.