This manual demonstrates the correct usage of the API.
Send an application/x-www-form-urlencoded
encoded HTTP POST
request to /conference
with the following request body:
name
(required): Name of the conferencestart_time
(required): Start date and time of the meeting in YYYY-MM-DDThh:mm:ss.000Z formatmail_owner
(optional): Mail of the moderator (Default: Nobody)duration
(optional): Duration of the meeting in seconds (Default: 1 hour)password
(optional): Password for the meeting (Default: No password set)
Example:
{
"name": "The tragedy of Darth Plagueis the wise",
"start_time": "2023-06-09T04:20:00.000Z",
"mail_owner": "[email protected]",
"duration": 420,
"password": "order66"
}
Send an HTTP GET
request to /conference/{meetingID}
,
where meetingID
is the ID of the meeting you want to get details from.
Example:
GET https://meetings.example.com/conference/69
to get details from meeting 69
.
Example return body:
{
"id": 69,
"name": "string",
"start_time": "2023-06-09T04:20:00.000Z",
"mail_owner": "[email protected]",
"duration": 420,
"previd": 68,
"max_occupants": 10,
"lobby": true
}
id
: ID of the meeting,name
: Name of the meetingstart_time
: Start date and time of the meeting in YYYY-MM-DDThh:mm:ss.000Z formatmail_owner
: Mail of the moderatorduration
: Duration of the meeting in secondsprevid
: ID of the previous meetingmax_occupants
: Maximum number of meeting participantslobby
: If true, users can wait in a lobby before joining the meeting
Send an HTTP DELETE
request to /conference/{meetingID}
,
where meetingID
is the ID of the meeting you want to delete.
Example:
DELETE https://meetings.example.com/conference/69