Start Apizee using the quick invitation page
Integrate Apizee visual engagement plateform on a webpage by redirecting to Apizee Cloud quick invitation page
On this page, you will see how you can use Apizee Cloud quick invitation to integrate Apizee Meet and Apizee Diag into your into 3rd-party software.
This requires 2 steps :
Generate the quick invitation link
Apizee Cloud quick invitation is a page where agents can start a video-conference or video-assistance in one click. This page allows to quickly start a video session, after providing basic informations.
The quick invitation page URL can take params to specify a client reference for the ticket, the service to use, phone number, etc, e.g.:
https://cloud.apizee.com/quick-invitation?reference=INC000001&service=92a0...9bd1&phone_numbers=+336012345678
The following code shows how to generate a quick invitation link:
Open Apizee Cloud
In a new tab
In a new tab, the user signs on to the Apizee platform (if not already identified) and then uses the form to send invitations to participants.

Insert a link or a button in the 3rd-party application that redirects the user to a new tab opening the Apizee invitation form:
<a href="<QUICK INVITATION URL>" target="_blank">Start video chat</a>In an iframe
Prerequisites: If you want to use Apizee in an iframe, there are several prerequisites:
For security reasons, communicate the domain of your application to our support team, so that we can authorize it
Create a DNS entry in your application's domain (ex: apizee.your-domain.com) which is a CNAME of cloud.apizee.com. This subdomain / URL will be used when called the iframe
In an iframe, the Apizee quick invitation page will be embedded in your site.
Use the quick invitation URL as the iframe src parameter:
<iframe id="ApizeeApp"
title="VisioAssistance"
src="https://xxx.your-domain.com/quick-invitation" <!-- created CNAME entry to cloud.apizee.com -->
allow="microphone;camera;geolocation;display-capture"
allowfullscreen>
</iframe>Last updated