Create a dynamic meeting
This API allows you to provision a dynamic meeting. Dynamic meetings are valid for 24 hours from the time of creation.
Header Parameters
The content type should be application/json
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.
Request Body
name of the user creating the meeting
title of the meeting
description for the meeting
This boolean describes whether to return a host token or not. A host token can be used to join a meeting as a host
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
- 200
- 401
- 412
Success
Schema
The 10 digit unique ID of the meeting
Meeting PIN that secures the meeting from unwanted access
The JioMeet subdomain this meeting will run in
The endpoint path for joining the guestMeetingLink/meetingLink.
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/guestMeetingLink. "hostToken" is the query change
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.
The meeting link with your custom sub-domain 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.
{
"jiomeetId": "string",
"roomPIN": "string",
"subdomain": "string",
"joinEndpoint": "string",
"hostToken": "string",
"guestMeetingLink": "string",
"meetingLink": "string"
}
Example meeting response
{
"jiomeetId": 1234567890,
"roomPIN": "abcdef",
"subdomain": "myjiomeetapplication",
"guestMeetingLink": "https://jiomeetpro.jio.com/guest?meetingId=123456789&pwd=abcdef",
"meetingLink": "https://myjiomeetapplication.platform.jiomeet.com/guest?meetingId=123456789&pwd=abcdef\"",
"joinEndpoint": "guest",
"hostToken": "xEEREASDASAD343a"
}
Schema
Status Code of the API
The error code of the API
The error message of the API
{
"customCode": 0,
"message": "string"
}
Schema
Status Code of the API
The error code of the API
The errors array which includes objects with a "property" and "message" properties describing the error
{
"customCode": 0,
"message": "string"
}