> ## Documentation Index
> Fetch the complete documentation index at: https://docs.meetjamie.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Meeting

> Permanently delete a meeting and all its related data

Permanently deletes a meeting and all its related data — including the summary, transcript, and tasks.

<Warning>
  This action is permanent and cannot be undone. All meeting data including the summary, transcript, and tasks will be permanently removed.
</Warning>

<Tabs>
  <Tab title="Workspace key">
    ```
    POST /v1/workspace/meetings.delete
    ```

    Delete any meeting in the workspace (the meeting owner must be a workspace member).

    ```bash theme={null}
    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"
    ```
  </Tab>

  <Tab title="Personal key">
    ```
    POST /v1/me/meetings.delete
    ```

    Delete meetings you own. You cannot delete meetings that were shared with you.

    ```bash theme={null}
    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"
    ```
  </Tab>
</Tabs>

## Parameters

| Parameter   | Type   | Description    |
| ----------- | ------ | -------------- |
| `meetingId` | string | The meeting ID |

## Example Response

```json theme={null}
{
  "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                            |
