A deep link is a URI the super app resolves into a specific page inside your mini app. Push notifications, order receipts, support tickets, and share-sheet actions all use them to skip the mini-app home and land the user on the exact screen the message is about.
order_details deep link. Every order-status push notification, receipt email, CRM handoff, and the super app's own orders list points at this route so the customer lands on the exact order screen inside your mini app. Without it, every one of those taps falls back to your mini-app home.Merchant portal → your mini app → Deep links. Each intent takes one field: a path_template starting with /, containing zero or more placeholders in {name} form. The platform swaps placeholders at runtime and builds the final URL against your mini-app's launch scheme.
{
"order_details": { "path_template": "/orders/{vendorOrderRef}" },
"product_page": { "path_template": "/catalog/{productId}" },
"search": { "path_template": "/search?q={query}" },
"custom": { "path_template": "{path}" }
}Templates must start with /. Every placeholder in a template must be in that intent's allowlist (shown above); unknown placeholders reject the whole config with INVALID_DEEP_LINK_CONFIG. Empty entries are fine — the platform simply won't build links for intents you don't opt into.