Skip to main content
Version: current

Scheduled Meeting - Create a scheduled meeting

This API creates a scheduled meeting. Scheduled meetings are valid for till after 1 day from the start time of the meeting.

Header Parameters
    Content-Type string

    The content type should be application/json

    Example: application/json
    Authorization string required

    You need an app created on the JioMeet Platform and using the app credentials you can create a JWT to access this API. The JWT should have an issuer and the key "app" with the app id generated from the Plaform.

    Example: <Authentication_token_signed_using_secret_or_private_key>
Request Body
    topic string

    The topic of the meeting

    startTime string

    The start time of the meeting in ISO format

    endTime string

    The end time of the meeting in ISO format

    isAutoRecordingEnabled boolean

    This boolean describes whether to auto recording the call. The recording starts automatically when there are more than 1 user in the call if this flag is enabled

    advancedOptions object
    joinBeforeHost boolean

    This boolean describes whether to allow users to join the meeting before the host

    waitingRoom boolean

    This boolean describes whether to enable the waiting room for the meeting

    participantHardAudioMute boolean

    This boolean describes whether to hard mute all participants in the meeting

    participantHardVideoMute boolean

    This boolean describes whether to hard mute all participants in the meeting

    isClassroomMode boolean

    This boolean describes whether to enable classroom mode for the meeting

Responses

Success


Schema
    meetingId String

    The meeting id that can be used to update, delete or fetch this meeting

    jiomeetId string

    The 10 digit unique ID of the meeting

    topic string

    The topic of the meeting

    isAutoRecordingEnabled boolean

    This boolean describes whether to auto recording the call. The recording starts automatically when there are more than 1 user in the call if this flag is enabled

    startTime string

    The start time of the meeting in ISO format

    endTime string

    The end time of the meeting in ISO format

    scheduledDuration number

    The duration of the meeting in milliseconds

    meetingUrl string

    The meeting link that the users will use to join the meeting. These users will be guest users and hence wont have any privileges to alter any meeting settings.

    hostUrl string

    The meeting link that the hosts will use to join the meeting. These users will be host users and hence will have privileges to alter meeting settings.

    hostToken string

    This identifier allows a user to join with host privileges. To allow a user to join as host, append this parameter in the query parameters of the meetingLink. "hostToken" is the query change

    roomPIN string

    Meeting secret that secures the meeting from unwanted access

    status string

    The status of the meeting

    advancedOptions object
    joinBeforeHost boolean

    This boolean describes whether to allow users to join the meeting before the host

    waitingRoom boolean

    This boolean describes whether to enable the waiting room for the meeting

    participantHardAudioMute boolean

    This boolean describes whether to hard mute all participants in the meeting

    participantHardVideoMute boolean

    This boolean describes whether to hard mute all participants in the meeting

    isClassroomMode boolean

    This boolean describes whether to enable classroom mode for the meeting

Loading...