Permanently deletes a meeting and all its related data — including the summary, transcript, and tasks.
This action is permanent and cannot be undone. All meeting data including the summary, transcript, and tasks will be permanently removed.
Workspace key
Personal key
POST /v1/workspace/meetings.delete
Delete any meeting in the workspace (the meeting owner must be a workspace member).curl -X POST -H "x-api-key: jk_your_workspace_key" \
-H "Content-Type: application/json" \
-d '{"json": {"meetingId": "7893456789012345678"}}' \
"https://beta-api.meetjamie.ai/v1/workspace/meetings.delete"
POST /v1/me/meetings.delete
Delete meetings you own. You cannot delete meetings that were shared with you.curl -X POST -H "x-api-key: jk_your_personal_key" \
-H "Content-Type: application/json" \
-d '{"json": {"meetingId": "7893456789012345678"}}' \
"https://beta-api.meetjamie.ai/v1/me/meetings.delete"
Parameters
| Parameter | Type | Description |
|---|
meetingId | string | The meeting ID |
Example Response
{
"result": {
"data": {
"json": {
"success": true,
"message": "Meeting deleted successfully",
"deletedMeetingId": "7893456789012345678"
}
}
}
}
Error Responses
| Status | Error | Cause |
|---|
403 | Access denied. This meeting does not belong to your workspace. | Workspace key — the meeting owner isn’t in your workspace |
403 | Access denied. You can only delete your own meetings. | Personal key — you don’t own this meeting |
404 | Meeting not found | No meeting exists with this ID |