REST API
Last updated
Last updated
The base URL of the HTTP REST API is located at
To access a concrete resource -> append it to the base URL - e.g. to access use:
The API is rate limited to a maximum of 1000 requests per minute. Read more .
Most of the retrieval endpoints (GET verb) support pagination. The reason for that is you could have created tens of thousands of rooms or recordings and it is not practical to list all of them in a single request/response. It would put a significant strain on the bandwidth. Please read the section for more details.
Room is where the video conference takes place.
Webhooks are a way to integrate your existing backend with different room events.
For example if a user joins or leaves the session, you may want your backend to be informed of these events with a callback HTTP request.
Your team is created when you sign up to Digital Samba Embedded. There are default room settings which all rooms inherit by default. All of your rooms are hosted under your chosen team name -> https://teamNameHere.digitalsamba.com/my-room Read the section for more details.
Before embedding a room in your application, you must first create/configure the room. You need to set the URL of the room, what roles are available inside the room, the available features to the users, etc... Read the section for more details.
You can find out which rooms are currently live (have participants inside). You can also query for the live participants in a concrete room. Read more .
Any video conference can be recorded by simply clicking the record button on the toolbar or calling the SDK method. An mp4 file will be produced and it will be accessible through the dashboard or the API endpoint. Read the section for details.
Read the section for more details.
Have a look also at our docs.