Skip to main content
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.
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"

Parameters

ParameterTypeDescription
meetingIdstringThe meeting ID

Example Response

{
  "result": {
    "data": {
      "json": {
        "success": true,
        "message": "Meeting deleted successfully",
        "deletedMeetingId": "7893456789012345678"
      }
    }
  }
}

Error Responses

StatusErrorCause
403Access denied. This meeting does not belong to your workspace.Workspace key — the meeting owner isn’t in your workspace
403Access denied. You can only delete your own meetings.Personal key — you don’t own this meeting
404Meeting not foundNo meeting exists with this ID