Skip to main content

Connect Booking System


Integration options

  1. Use Bambuser's own native booking solution
    • Read more about this here
    • Learn how to control which services are displayed here
    • Learn how to configure custom booking emails here

  2. Use one of our integrated solutions: Appointedd or Booxi
    • Will not require any extra development due to already existing integrations

  3. Integrate your own external booking system
    • Set up end-user booking interface
    • Request Bambuser's Connect links API to create a meeting
    • Connect your resources (agents)

Booking CTA can also be enabled within the Call Widget to allow your customers to schedule a call instead of joining the call straight away (Drop in). Read more about how the booking CTA can be configured here.

Choose one of our integrated solutions

Appointedd

Bambuser has an option to use Appointedd.com as an external booking system, integrated into the Bambuser One-to-one Agent tool through a simple setup that requires no customized code.

How to integrate your Appointedd solution as booking system

Booxi

Bambuser has an option to use Booxi.com as an external booking system, integrated into the Bambuser One-to-one Agent tool through a simple setup that requires no customized code.

How to integrate your Booxi solution as booking system


Integrate your own booking system

To integrate your own booking system you need to use Bambuser's Connect links API. Bambuser provides a way for your booking system to generate a link where the agent and the customer can connect to the meeting.

https://liveshopping-api.bambuser.com/v1/docs/api/one-to-one#tag/Connect-Links

Terminology:

  • externalId Your booking system's ID of the booking (should be unique to this booking)
  • externalResourceId Your booking system's ID of the Agent / Bookable resource
  • id Bambuser's ID of the created connect-link

Step 1: End user booking interface

You need to provide a way for your customers to book meetings through your own User Interface. Your own website should direct customers to this booking interface.

When a customer book a meeting, your booking system sends a request to Bambuser's Connect links API to create a connect link.

note

Remember to replace the bracket variables [] in the example URLs. E.g. replace [id] with abc123

  1. Save the id that you get back from the API to be able to make updates to the connect link
  2. Generate the connect link url for agent and customer
    • Agent: https://lcx.bambuser.com/[orgId]/one-to-one/agent-tool?connectId=[id]
    • Optionally you can add this link to the email confirmation agent recieves after somebody has booked a meeting with them. Agents will also be able to join the meeting straight through the dasboard

    • Client: https://[your-website]/live-meeting/?bambuserConnectId=[id]
    • Include this link to the email confirmation end-user recieves after they have booked a meeting. Clicking on the link will automatically open the widget on page load and allow them to join that specific meeting

Request sample
{
"validFrom": "2022-01-21T15:15:22Z",
"validTo": "2022-01-21T15:45:22Z",
"firstName": "Name of person booking",
"lastName": "Last name of person booking",
"email": "booker@gmail.com",
"externalResourceId": "[externalResourceId]",
"title": "Title of the booked meeting"
}
Automatic
  1. Add calendarId (External Calendar ID) to the user utilizing REST API

    • If user is not already in the dashboard, you can do this by passing calendarId in the body of the request when inviting the user to the dashboard
    • If user is already in the dashboard, you can do this by passing calendarId in the body of the request for updating user data
  2. This will automatically populate External Calendar ID field in the dashboard for that user

Manual
Instruct your users/agents to login to Bambuser Dashboard and go to their profile settings and enter their externalResourceId in the Calendar Id field.


Enable bookings directly from the Bambuser call widget (Optional)

Optionally, Bambuser can enable Book a meeting button in the call widget. You can select in between three different behaviours when clicking on the button.

requirement

To enable this, you will need to provide your Bambuser contact person with the following:

  • URL to your booking interface page
  • Which of the below option you will opt in
OptionBehaviourDescription
1IframeBooking URL page opens in an iframe inside the call widget. If you are using this option, your booking page should be responsive on mobile devices!
2New TabBooking page URL will open in a new tab and widget will remain open in the old tab
3RedirectBooking page URL will open in the same tab and force widget to close.