Introduction
Any member of the organization can create a meeting using the Meedio dashboard or the Public API. When creating a meeting via the Public API, a redirect URL is provided for the participants to meet.
Endpoints
GET /v3/meeting/:id
POST /v3/meeting
DELETE /v3/meeting
Meeting closing logic
If no participant joins the meeting within 15 minutes of its creation, the meeting will close. However, if at least one participant joins, the meeting will remain open for 15 minutes after the last participant leaves.
Starting with version 3, meetings of type MEETING
can be made long-lasting when isInfinite
parameter is given and it's value is set to true
. This means they will remain permanently accessible to the user.
Meeting object (response)
MEETING
type object
{
"id": "e91254af-e761-4fdb-abe8-b4b1f7f02415",
"isInfinite": true,
"redirectUrl": "https://p2p.meedio.me/meetings/e91254af-e761-4fdb-abe8-b4b1f7f02415"
}
Key | Type | Description |
---|---|---|
id |
string | version 4 UUID generated once the meeting was created |
isInfinite |
boolean | value that determines if the meeting is long-lasting |
redirectUrl |
string | meeting redirect url |
MEETING
type object with shortened redirect url
{
"id": "e91254af-e761-4fdb-abe8-b4b1f7f02415",
"isInfinite": true,
"redirectUrl": "https://p2p.meedio.me/m/eA4Z1"
}
Key | Type | Description |
---|---|---|
id |
string | version 4 UUID generated once the meeting was created |
isInfinite |
boolean | value that determines if the meeting is long-lasting |
redirectUrl |
string | meeting redirect url |
CONSULTATION
type object
{
"id": "e91254af-e761-4fdb-abe8-b4b1f7f02415",
"redirectUrl": "https://p2p.meedio.me/meetings/e91254af-e761-4fdb-abe8-b4b1f7f02415"
}
Key | Type | Description |
---|---|---|
id |
string | version 4 UUID generated once the meeting was created |
redirectUrl |
string | meeting redirect url |
Meeting types that can be provided as an argument
Valid meeting types are MEETING
and CONSULTATION
. They are case insensitive when providing in request. Server will send error in response if any other type is provided.