The RX Mobile App V2 v2 or later has a built-in QR code scanner, this can be used to perform certain actions, such as Search and Check-In.
This feature is available only on RX Mobile App V2 v2 or later. For assistance in configuring QR Codes please contact our support team at helpdesk@qedas.com.
...
https://www.w3schools.com/whatis/whatis_json.asp
QR Code Generator
To generate a QR code you will need to use a 3rd Party QR Code Generator, there are many free options available.
...
Once the QR Code has been generated, it can be downloaded and used as needed.
Check-In QR Codes
To use QR Codes to allow check-in you will first need to enable this setting. This can be found under the Interactive Tab for either System Settings, Location-based Settings or on a per profile basis with Profile Settings.
...
The QR Code will be displayed on the right, you can now download this image to be used where required.
Search QR Codes
Using a QR code for Search can allow users to quickly perform a pre-defined search.
All the Filter option available in the RX Mobile App can be configured into a QR Code, see the table below for all the options that can be configured.
Key | Explanation | Example | ||||
---|---|---|---|---|---|---|
resourcename | The value provided here will populate the “Search bar” found in the Mobile App, this can be the name of a Resource Profile |
| ||||
rxlocation | This can be used to filter results down to a specific location. This is a JSON Object, this accepts the following location options; |
| ||||
resourceequipment | This can be used to filter results to resources that include certain equipment. This is a JSON Array, this accepts a comma separated list of equipment.
|
| ||||
keywords | This can be used to filter results to resource that include certain keywords. This is a JSON Array, this accepts a comma separated list.
|
| ||||
freeroomsearch | This will filter the results to only resources that are currently available. |
| ||||
bookingduration | The booking duration accepts a number, in minutes, that a resource should be available for.
|
The results will be filtered to only resources that are available for a minimum of 1 hour. | ||||
profiletype | This will filter the type of space shown in the results. Currently, the options available are;
|
This example will only display Room Profiles. |
QR Code Examples
Find all FREE ROOMS in the NEW YORK OFFICE Building
Code Block | ||
---|---|---|
| ||
{ "resourcename": "", "rxlocation":{ "Building": "New York Office" }, "profiletype":"R", "freeroomsearch":1 } |
...
Find all FREE DESKS in the LONDON OFFICE, GROUND FLOOR available for at least 1 HOUR
Code Block | ||
---|---|---|
| ||
{ "resourcename": "", "rxlocation":{ "Building": "London Office", "Floor": "Ground Floor" }, "profiletype":"D", "freeroomsearch": 1, "bookingduration": 60 } |
...
Find any FREE resource with VIDEO CONFERENCE equipment
Code Block | ||
---|---|---|
| ||
{ "resourcename": "", "freeroomsearch": 1, "resourceequipment": ["vc"] } |
...
Show details for MEETING ROOM 01
Code Block | ||
---|---|---|
| ||
{ "resourcename": "Meeting Room 01" } |
...