Skip to main content

14 posts tagged with "API"

View All Tags

Customize the meeting video background color via API

· 2 min read
Stefan Benicke
Senior Developer @ Eyeson

We provide the new option background_color to let you customize the meeting video background color to your needs.

The option is only available on the meeting start request, see API room reference. It can not be changed during the meeting.

The following example shows how to use the new option with curl.

$ curl -X POST \
-H "Authorization: YOUR_API_KEY" \
-d "user[name]=John Doe" \
-d "options[background_color]=#121212" \
https://api.eyeson.team/rooms

How to setup a video meeting platform using Eyeson and ruby

· 5 min read
Christoph Lipautz
Alumni @ Eyeson

This tutorial provides a practical example of how to setup a video platform using the Eyeson API service. The application uses the [Eyeson ruby gem], the web application framework [Sinatra] and hosting platform [Heroku]. By following the steps in the how-to you will have a website up and running, providing an entry point for a shared video meeting room. The participants can join the meeting without any registration or sign up, and will return to the application website after exiting the meeting.

Cover image