Skip to main content
Version: current

Meeting Invite - Create a meeting invite

This API creates a meeting invite for a participant to join a scheduled webinar or meeting

Header Parameters
    Content-Type string

    The content type should be application/json

    Example: application/json
    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>
    Accept string

    The accept type should be application/json

    Example: application/json
Request Body
    role string

    The role of the invitee (e.g., "Co-Host", "Host", "Participant")

    firstName string

    First name of the invitee

    lastName string

    Last name of the invitee

    identity string

    Email address or identity of the invitee

    sendInvite boolean

    Whether to send an email invite to the participant

    meetingId string

    The meeting ID for which the invite is being created

Responses

Success


Schema
    _id string

    Unique identifier for the meeting invite

    joinUrl string

    The URL that the invitee can use to join the meeting

    joinHash string

    Unique hash for joining the meeting

    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

    sendInvite boolean

    Whether to send an email invite

    enableSpeakerTile boolean

    Whether to enable speaker tile for this participant

    orderId integer

    Order ID for the invite

    cOn date-time

    Creation timestamp

    mOn date-time

    Last modification timestamp

    __v integer

    Version number

Loading...