Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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

Code Block
{
  "resourcename": "Desk 01"
}

rxlocation

This can be used to filter results down to a specific location.

This is a JSON Object, this accepts the following location options;
Country, City, Site, Building, Floor, Zone

Code Block
{
  "rxlocation": {
    "Building": "New York Office",
    "Floor": "10th Floor"
  }
}

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.

Note

Each value must be be contained in quotation marks (“ xxx “)

Code Block
{
  "resourceequipment": ["phone", "computer"]
}

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.

Note

Each value must be be contained in quotation marks (“ xxx “)

Code Block
{
  "keywords": ["ergonomic chair"]
}

freeroomsearch

This will filter the results to only resources that are currently available.

Code Block
{
  "freeroomsearch": 1
}

bookingduration

The booking duration accepts a number, in minutes, that a resource should be available for.

Info

This works in conjunction with freeroomsearch

Code Block
{
  "freeroomsearch": 1,
  "bookingduration": 60
}

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;

R → Room
D → Desk
P → Parking

Code Block
{
  "profiletype": "R"
}

This example will only display Room Profiles.

QR Code Examples

Find all FREE ROOMS in the NEW YORK OFFICE Building
Code Block
languagejson
{
  "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
languagejson
{
  "resourcename": "",
  "rxlocation":{
    "Building": "London Office",
    "Floor": "Ground Floor"
  },
  "profiletype":"D",
  "freeroomsearch": 1,
  "bookingduration": 60
}

...

Find any FREE resource with VIDEO CONFERENCE equipment
Code Block
languagejson
{
  "resourcename": "",
  "freeroomsearch": 1,
  "resourceequipment": ["vc"]
}

...

Show details for MEETING ROOM 01
Code Block
languagejson
{
  "resourcename": "Meeting Room 01"
}

...