You are on page 1of 6

Detailed Documentation

View video at https://youtu.be/8M9zsGKYIBg

Summary
● Get Call Link is an application which allows users to create button widgets to embed in
their website for visitors to request a call and get a link to the meeting.
● Visitors to their website can request a video call using Zoom by clicking the button
widget, they will have to sign in to zoom for a request to be sent.
● Users who embedded the button will be able to view requests by visitors and accept or
reject them, and the application will create new invites and send a link to join the
meeting.

Test Steps
Serving widget as user
As a user of Get Call Link, you should be able to add a button to your website:

1. Sign in to your dashboard https://www.getcall.link/dashboard


2. Click 'Add widget'
a. fill in the widget title, e.g. 'test'
b. add valid URLs where the widget can be embedded, in this case 'http://localhost'
c. use another base URL if you want to embed button in another website

3. Copy the code with the widget ID below the form or click to copy to clipboard
4. Create a new HTML file called index.html to embed a widget into your website
<html>
<body>
<h1>Test</h1>
<script async>
window.getCallLinkWidget = {
id: '48d3bcd9-751c-4df6-bee4-3da78a0dea12'
};
</script>
<script async src='https://www.getcall.link/widget.js'></script>
</body>
</html>

5. Serve the HTML file in browser using steps below, or navigate to the URL where you
added the script in your website
a. download python3 if you do not have that installed:
https://www.python.org/downloads/
b. open terminal and in the folder with index.html, run `python3 -m http.server 80`
c. type `localhost` in browser, you should see the button and icon
Using widget as visitor
As a visitor to your website, you should be able to click the button to request a call link:

1. Navigate to the website you hosted / https://www.getcall.link


2. Click the embedded button on the website
3. A form should pop up

4. Fill in name, email, and click "I'm not a robot" in the login popup window
5. The window should close and the button icon should turn into a tick
Accepting / Rejecting requests
As a user of Get Call Link, you should be able to accept or decline a link request

1. Navigate to your dashboard, https://www.getcall.link/dashboard


2. You should see the request from 'get zoom' under pending
3. Click the tick, you should see a dialog popup for details of the meeting:

4. Confirm the meeting settings and click send


5. An email should be sent to the account that was used to request for the link with the
meeting invite link and other details, in this case it's sent to getzoomlink@gmail.com

6. Each new request should have a different link


7. Reject a request by clicking the cross icon at pending or accepted tab
8. It should appear at the rejected tab

9. To accept the request, click the tick and send

10. Note that another email will be sent with a new link

11. The request will be under accepted tab again

You might also like