Plan a conference
Plan a conference
This endpoint allows you to plan a conference with predefined settings. It will add an event on your Infomaniak Calendar with the meeting url. If you just want to create a room you don't need any API calls, you can build a conference URL by adding an unique identifier to your kMeet instance url (eg: kmeet.infomaniak.com/${MY_VERY_SECRET_CONFERENCE_ID})
post/1/kmeet/rooms
Request body
Example request
{
"starting_at": "2020-06-01 20:00:00",
"ending_at": "2020-06-01 20:00:00",
"timezone": "Europe/Zurich",
"hostname": "kmeet.infomaniak.com",
"attendees": [
{
"address": "myemail@ik.me"
}
]
}Response
Default Response
Example response
{
"result": "success",
"data": {
"created_at": "2020-06-01 20:00:00",
"updated_at": "2020-06-01 20:00:00",
"ending_at": "2020-06-01 20:00:00",
"hostname": "kmeet.infomaniak.com"
}
}