curl --request GET \
--url https://app.msportal.ai/api/public/v1/calendar/meetings/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "<string>",
"title": "<string>",
"startTime": "2023-11-07T05:31:56Z",
"endTime": "2023-11-07T05:31:56Z",
"isAllDay": true,
"companyId": "<string>",
"companyName": "<string>",
"eventType": "<string>",
"status": "<string>",
"locationId": "<string>",
"locationName": "<string>",
"locationText": "<string>",
"createdById": "<string>",
"createdByName": "<string>",
"recurrenceRule": "<string>",
"meetingSource": "<string>",
"externalEventId": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"notes": "<string>",
"agendaLocked": true,
"participants": [
{
"id": "<string>",
"email": "[email protected]",
"userId": "<string>",
"userName": "<string>",
"acceptanceStatus": "<string>",
"invitationSent": true,
"roleId": "<string>",
"roleName": "<string>"
}
],
"participantCount": 123
}
}Retrieve a single meeting by ID with participants and full details.
curl --request GET \
--url https://app.msportal.ai/api/public/v1/calendar/meetings/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "<string>",
"title": "<string>",
"startTime": "2023-11-07T05:31:56Z",
"endTime": "2023-11-07T05:31:56Z",
"isAllDay": true,
"companyId": "<string>",
"companyName": "<string>",
"eventType": "<string>",
"status": "<string>",
"locationId": "<string>",
"locationName": "<string>",
"locationText": "<string>",
"createdById": "<string>",
"createdByName": "<string>",
"recurrenceRule": "<string>",
"meetingSource": "<string>",
"externalEventId": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"notes": "<string>",
"agendaLocked": true,
"participants": [
{
"id": "<string>",
"email": "[email protected]",
"userId": "<string>",
"userName": "<string>",
"acceptanceStatus": "<string>",
"invitationSent": true,
"roleId": "<string>",
"roleName": "<string>"
}
],
"participantCount": 123
}
}