Bamboo Proptech

White Labels

Information for web developers on how to integrate the Bamboo Auctions platform into any website.

Integration Steps

Follow these steps to embed Bamboo Auctions as a white label on your website:

1. Add the Stylesheet

Add the following stylesheet to the <head> section of your HTML:

<link rel="stylesheet" href="https://<name>.bambooauctions.com/css/bamboo-wl.css">

Replace <name> with your white label identifier (e.g., yourcompany.bambooauctions.com).

If you don't yet have a white label identifier, contact your Bamboo representative.

2. Add the Iframe

Add the iframe element where you want the auction content to appear. The iframe will be full width on your site:

<iframe class="iframeBB" scrolling="no" src="https://<name>.bambooauctions.com"></iframe>

Again, replace <name> with your white label identifier.

3. Add the JavaScript

Add the following script tag toward the bottom of your page, before the closing </body> tag:

<script src="https://<name>.bambooauctions.com/js/bamboo-wl.js"></script>

This script handles automatic iframe resizing and other interactive features.

Example

For a white label named "yourcompany", your implementation would look like:

<!DOCTYPE html>
<html>
<head>
  <link rel="stylesheet" href="https://yourcompany.bambooauctions.com/css/bamboo-wl.css">
</head>
<body>
  <!-- Your page content -->
  
  <iframe class="iframeBB" scrolling="no" src="https://yourcompany.bambooauctions.com"></iframe>
  
  <!-- Other content -->
  
  <script src="https://yourcompany.bambooauctions.com/js/bamboo-wl.js"></script>
</body>
</html>

Frequently Asked Questions

On this page