Skip to main content
Version: current

Meeting Invite - Get meeting invites

This API retrieves meeting invites for a specific meeting with pagination and filtering capabilities

Path Parameters
    meetingId string required

    The meeting ID for which to retrieve invites

    Example: sm-ead69d8e-8c30-42f1-9798-8acfa5dd1277
Query Parameters
    offset integer

    Number of records to skip for pagination

    Example: 0
    limit integer

    Maximum number of records to return

    Example: 10
    keyword string

    Search keyword to filter invites

Header Parameters
    Authorization string required

    You need an app created on the JioEvents 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 Platform.

    Example: <Authentication_token_signed_using_secret_or_private_key>
Responses

Success


Schema
    maxInvites integer

    Maximum number of invites allowed for the meeting

    invitesCount integer

    Total number of invites for the meeting

    invitesList object[]

    List of meeting invites

  • Array [
  • _id string

    Unique identifier for the meeting invite

    firstName string

    First name of the invitee

    lastName string

    Last name of the invitee

    emailId string

    Email address of the invitee

    role string

    The role assigned to the invitee

    meetingId string

    The meeting ID for which the invite was created

    userId string

    Unique identifier for the user

    isDeleted boolean

    Whether the invite has been deleted

    socialMediaLinks string[]

    Array of social media links associated with the invitee

    registered boolean

    Whether the invitee has registered

    isInviteSent boolean

    Whether the invite has been sent

    cOn date-time

    Creation timestamp

    mOn date-time

    Last modification timestamp

    __v integer

    Version number

  • ]
Loading...