Invite

Invite meeting participant

Invite an user as meeting participant.

POSThttp://127.0.0.1:8888/api/user/meetings/{id}/participants/invite
Path parameters
id*all of

The unique ID of conference room.

Body
numberstring

The number of invited participant.

Response

OK

Request
const response = await fetch('http://127.0.0.1:8888/api/user/meetings/{id}/participants/invite', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json"
    },
    body: JSON.stringify({}),
});
const data = await response.json();