Vivomeetings plan comes with unlimited recordings, real-time transcription, webinar mode and so much more.
Emit new event when a new VivoMeeting or webinar is created. See the documentation
Creates a new conference in VivoMeetings. See the documentation
Write Python and use any of the 350k+ PyPi packages available. Refer to the Pipedream Python docs to learn more.
Fetches the recordings of a conference or webinar from VivoMeetings. See the documentation
Updates an existing conference or webinar on VivoMeetings. See the documentation
The Vivomeetings API allows developers to integrate real-time video conferencing capabilities into their applications. With this API, users can create, manage, and customize video meetings directly through the Pipedream platform. Utilizing Pipedream's serverless execution model, you can interface with the Vivomeetings API to automate meeting setups, dynamically manage participants, and harness data from meeting events for analytics or enhanced user experiences.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
vivomeetings: {
type: "app",
app: "vivomeetings",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `${this.vivomeetings.$auth.url}/enterprise_api/subscription/fetch_products`,
headers: {
Authorization: `Bearer ${this.vivomeetings.$auth.oauth_access_token}`,
},
})
},
})
Develop, run and deploy your Python code in Pipedream workflows. Integrate seamlessly between no-code steps, with connected accounts, or integrate Data Stores and manipulate files within a workflow.
This includes installing PyPI packages, within your code without having to manage a requirements.txt
file or running pip
.
Below is an example of using Python to access data from the trigger of the workflow, and sharing it with subsequent workflow steps:
def handler(pd: "pipedream"):
# Reference data from previous steps
print(pd.steps["trigger"]["context"]["id"])
# Return data for use in future steps
return {"foo": {"test":True}}