Skip to main content

Getting Started

Initial Setup

To begin using Quick Record, you'll need to first initiate a meeting through our API:

  1. Send a POST request to initiate the meeting:

API Endpoint:

[POST] /v1/integrations/meetings/audio/initiate

Request Body:

{
"email": "user@example.com"
}

Response:

{
"meeting_id": "111111"
}

URL Structure

After receiving the meeting ID, construct the recording URL:

https://recorder.mesai.co/en?token=<token>&email=<email>&meetingId=<meetingId>&redirectUrl=<redirectUrl>
note

The URL structure is essential for proper functionality. Ensure all required parameters are included and properly formatted.