Provision Room API
Method: POST
API Endpoint: https://jiomeetpro.jio.com/api/thirdparty/provision/room
API Request Signature
Request Header
Key | Parameter |
---|---|
app | App name |
authToken | App secret |
Accept | application/json |
content-type | application/json |
Request Body: TYPE JSON
{
"title": "My classroom",
"userId": "user_id",
"hostFlow": true
}
- Meeting Title
- User ID (Returned from Provision User API)
- hostFlow - Setting this as true gives the user who creates the meeting the host controls when they join on JioMeet app
Sample Code
curl --location --request POST'https://jiomeetpro.jio.com/api/thirdparty/provision/room' \
--header 'accept: application/json' \
--header 'app: sampleapp’ \
--header 'authToken: <auth token goes here>’ \
--header 'Content-Type: application/json' \
--data-raw '{ "userId": "u-12345" }'
API Response
API Response: TYPE JSON string
{
"hostToken" : "host_token",
"jiomeetId" : "meeting_id",
"roomPIN" : "password"
}
- Host Token - You can pass host token in the iframe URL to give the joining user Host status
- JioMeet ID - Meeting Room ID, which can be used to construct meeting room URL
- Room Pin - Meeting Room Pin, which can be used to construct meeting room URL