Tag landing pages
Turn every physical tag into a clickable link to your own application. Tag landing pages let you control what happens when someone scans a Blecon tag, redirecting to your asset management system, a service request form, or any custom URL, with the tag ID automatically included.
Default behaviour
By default, scanning a registered tag opens the tag's detail page in the Blecon Console. This shows the tag's status, last seen time, and network information.
Custom landing pages
You can configure a custom URL per network, so scanning any tag 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 Tag Landing Page field.
- Click Save.
URL placeholders
Use placeholders in the URL to include the scanned tag's ID:
| Placeholder | Replaced with | Example |
|---|---|---|
{device_id} |
Full tag 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/tag/{uuid}/status
When a user scans a tag, they're redirected to https://yourapp.com/tag/550e8400-.../status.
Use cases
- Customer-facing asset lookup: Link tags to your own asset management system.
- Work order forms: Scan a tag to open a service request form pre-filled with the tag ID.
- Status dashboards: Redirect to a dashboard showing the tag's current state.