Set meeting participant position.
The unique ID of conference room.
The unique ID of conference room participant.
The position of room member. The member will not be displayed when -1 is specified.
OK
const response = await fetch('http://127.0.0.1:8888/api/user/meetings/{id}/participants/{participant_id}/position', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();