Versions Compared

Key

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

...

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
{
  "freeroomseach": 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
{
  "
freeroomseach
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

...