Invite an user as conference room participant.
The unique ID of conference room.
The number of invited participant.
OK
const response = await fetch('http://127.0.0.1:8888/api/conference_rooms/{id}/participants/invite', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();