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

calendar_idinteger required

The unique identifier (ID) of the Infomaniak Calendar where you want to plan the meeting. Make a GET request on https://calendar.infomaniak.com/api/pim/calendar

starting_atstring required
ending_atstring required

Room settings can be deleted if this date expires. This field will be updated if event dates change in Infomaniak Calendar.

timezonestring required
hostnamestring required

Needed for rebuilding room url

titlestring required
descriptionstring

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

result'success' | 'error' | 'asynchronous' required

Result of the HTTP request

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"
  }
}

Changes