Scheduled Meeting - List all meetings of user
Fetch all scheduled meetings for a user based on various filters such as meetingId, jiomeetId, or a specific time range. Use the optional query parameters to refine the search. Required OAuth scope: meeting:read
- To grant permission to read the scheduled meetings.
Path Parameters
The ID of the user.
Query Parameters
Indicates whether to either fetch past or upcoming meetings.
Header Parameters
The content type should be application/json
- 200
- 400
- 401
- 412
Success
Schema
- Array [
- ]
The total number of scheduled meetings.
Indicates if more meetings are available.
meetingDetails object[]
The unique identifier for the JioMeet session.
The topic or title of the meeting.
The start time of the meeting in ISO format.
The end time of the meeting in ISO format.
The scheduled duration of the meeting in milliseconds.
The URL to join the meeting.
The current status of the meeting.
The PIN required to join the meeting room.
The system-generated unique identifier for the meeting.
{
"totalCount": 0,
"moreAvailable": true,
"meetingDetails": [
{
"jiomeetId": "string",
"topic": "string",
"startTime": "2024-06-11T05:55:24.952Z",
"endTime": "2024-06-11T05:55:24.952Z",
"scheduledDuration": 0,
"meetingUrl": "string",
"status": "string",
"pin": "string",
"_id": "string"
}
]
}
Example fetch scheduled meeting response
{
"totalCount": 1,
"moreAvailable": false,
"meetingDetails": [
{
"jiomeetId": "7212310665",
"topic": "Meeting created at 07:09 AM",
"startTime": "2023-09-08T02:39:27.000Z",
"endTime": "2023-09-08T03:09:27.000Z",
"scheduledDuration": 1800000,
"meetingUrl": "https://jiomeetpro.jio.com/shortener?meetingId=7212310665&pwd=7mVhq",
"status": "active",
"pin": "7mVhq",
"_id": "sm-aed12dea-60d2-4757-9705-6c93dce0e3f0"
}
]
}
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 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"
}