Meeting Invite - Get meeting invites
This API retrieves meeting invites for a specific meeting with pagination and filtering capabilities
Path Parameters
The meeting ID for which to retrieve invites
Query Parameters
Number of records to skip for pagination
Maximum number of records to return
Search keyword to filter invites
Header Parameters
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.
- 200
- 400
- 401
- 412
Success
Schema
- Array [
- ]
Maximum number of invites allowed for the meeting
Total number of invites for the meeting
invitesList object[]
List of meeting invites
Unique identifier for the meeting invite
First name of the invitee
Last name of the invitee
Email address of the invitee
The role assigned to the invitee
The meeting ID for which the invite was created
Unique identifier for the user
Whether the invite has been deleted
Array of social media links associated with the invitee
Whether the invitee has registered
Whether the invite has been sent
Creation timestamp
Last modification timestamp
Version number
{
"maxInvites": 50,
"invitesCount": 1,
"invitesList": [
{
"_id": "mi-89577cd6-b306-4219-a28e-8e42c69c6891",
"firstName": "tp-088573cb-34d3-405d-a954-119ee6aaff92",
"lastName": "",
"emailId": "tp-088573cb-34d3-405d-a954-119ee6aaff92@cpassbot.jiomeet",
"role": "Host",
"meetingId": "sm-ead69d8e-8c30-42f1-9798-8acfa5dd1277",
"userId": "u-5075a9a0-cfd0-4dd9-bca9-e441b0df9237",
"isDeleted": false,
"socialMediaLinks": [],
"registered": false,
"isInviteSent": false,
"cOn": "2025-08-20T21:26:12.068Z",
"mOn": "2025-08-20T21:26:12.068Z",
"__v": 0
}
]
}
Example get meeting invites response
{
"maxInvites": 50,
"invitesCount": 1,
"invitesList": [
{
"_id": "mi-89577cd6-b306-4219-a28e-8e42c69c6891",
"firstName": "tp-088573cb-34d3-405d-a954-119ee6aaff92",
"lastName": "",
"emailId": "tp-088573cb-34d3-405d-a954-119ee6aaff92@cpassbot.jiomeet",
"role": "Host",
"meetingId": "sm-ead69d8e-8c30-42f1-9798-8acfa5dd1277",
"userId": "u-5075a9a0-cfd0-4dd9-bca9-e441b0df9237",
"isDeleted": false,
"socialMediaLinks": [],
"registered": false,
"isInviteSent": false,
"cOn": "2025-08-20T21:26:12.068Z",
"mOn": "2025-08-20T21:26:12.068Z",
"__v": 0
}
]
}
Schema
Status Code of the API
The error code of the API
The error message of the API
{
"customCode": 0,
"message": "string",
"errors": "string"
}
Schema
Status Code of the API
The error code of the API
The error message of the API
{
"customCode": 0,
"message": "string",
"errors": "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",
"errorsArray": [
null
]
}