Device landing pages
Turn every physical device into a clickable link to your own application. Device landing pages let you control what happens when someone scans a Blecon device — redirecting to your asset management system, a service request form, or any custom URL, with the device ID automatically included.
Default behaviour
By default, scanning a registered device opens the device's detail page in the Blecon Console. This shows the device's status, last seen time, and network information.
Custom landing pages
You can configure a custom URL per network, so scanning any device on that network redirects to your own application instead of the Console.
Setting a custom landing page
- In the Console, open your network.
- Go to Settings.
- Enter a URL in the Device Landing Page field.
- Click Save.
URL placeholders
Use placeholders in the URL to include the scanned device's ID:
| Placeholder | Replaced with | Example |
|---|---|---|
{device_id} |
Full device URN | urn:uuid:550e8400-e29b-41d4-... |
{uuid} |
Bare UUID (without urn:uuid: prefix) |
550e8400-e29b-41d4-... |
{device_id_bare} |
Same as {uuid} |
550e8400-e29b-41d4-... |
Example URL template:
https://yourapp.com/device/{uuid}/status
When a user scans a device, they're redirected to https://yourapp.com/device/550e8400-.../status.
Use cases
- Customer-facing asset lookup — Link devices to your own asset management system.
- Work order forms — Scan a device to open a service request form pre-filled with the device ID.
- Status dashboards — Redirect to a dashboard showing the device's current state.