Getting Started
Initial steps to join the first call with VidyoPlatform
Congratulations! Now you have your dedicated VidyoPlaform tenant and were provided Admin account credentials for accessing it. Let's put it below for further reference.
The below steps will walk you through to get you connected to the call.
Step 1 - Create a meeting room
Send a request to create a room
Meeting room is an entity of VidyoPortal where actual calls take place. In VidyoPlatform you have complete control over your rooms of various types such as creating, deleting, locking, protecting with PIN, etc. In this example, we will create a basic Scheduled room on your tenant using Web Service SOAP API.
In order to get a room created you have to send a SOAP API request over to the Admin web service on your tenant.
You can always refer to the API definitions at
https:// tenant_name.platform.vidyo.io/services/v1_1/VidyoPortalAdminService?wsdl
Request body:
And here are request headers:
As you might notice, we use Base Authentication where your Admin credentials are encoded into base64 format:
Obtain and understand the response
Here is what you will get as a response of creating a room
As you may see the response contains various fields with data, some of them may be used even as-is for inviting other participants to the conference. However, let's not overcomplicate things at this point and stop on the most important field - roomURL. It contains all the information your application and other participants will require in order to connect to the call in the room.
Step 2 - Join the call using stock VidyoConnect application
So, the roomURL response field value is as follows:
We often call it a Room Link, and this is basically everything you need in order to join the call in this room. Just follow this link and choose the application of your preference - whether it is web application or binary application corresponding to your current operating system:
Things become more interesting when it comes to building your own client application for joining calls on VidyoPlatform. Proceed to the next tutorial to learn how to build your first simple client web application.
Last updated