Skip to main content
Version: current

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
    userId string required

    The ID of the user.

Query Parameters
    past boolean

    Indicates whether to either fetch past or upcoming meetings.

Header Parameters
    Content-Type string

    The content type should be application/json

    Example: application/json
Responses

Success


Schema
    totalCount integer

    The total number of scheduled meetings.

    moreAvailable boolean

    Indicates if more meetings are available.

    meetingDetails object[]
  • Array [
  • jiomeetId string

    The unique identifier for the JioMeet session.

    topic string

    The topic or title of the meeting.

    startTime date-time

    The start time of the meeting in ISO format.

    endTime date-time

    The end time of the meeting in ISO format.

    scheduledDuration integer

    The scheduled duration of the meeting in milliseconds.

    meetingUrl uri

    The URL to join the meeting.

    status string

    The current status of the meeting.

    pin string

    The PIN required to join the meeting room.

    _id string

    The system-generated unique identifier for the meeting.

  • ]
Loading...