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

# cancel meeting invite

> Cancel a pending meeting invite by ID for the authenticated organization.

Cancellation is idempotent for invites that are already `cancelled`,
`ended`, or `failed`. A successful cancellation returns no response body.




## OpenAPI

````yaml https://api.anam.ai/swagger.json delete /v1/meetings/invites/{id}
openapi: 3.1.0
info:
  title: Anam AI API
  version: '1.0'
servers:
  - url: https://api.anam.ai
    description: Anam API
security:
  - BearerAuth: []
tags:
  - name: Sessions
  - name: Meetings
  - name: Personas
  - name: Avatars
  - name: Voices
  - name: LLMs
  - name: Knowledge
  - name: Tools
  - name: Share Links
  - name: Engine
paths:
  /v1/meetings/invites/{id}:
    delete:
      tags:
        - Meetings
      summary: Cancel meeting invite
      description: >
        Cancel a pending meeting invite by ID for the authenticated
        organization.


        Cancellation is idempotent for invites that are already `cancelled`,

        `ended`, or `failed`. A successful cancellation returns no response
        body.
      operationId: cancelMeetingInvite
      parameters:
        - in: path
          name: id
          required: true
          description: Meeting invite ID.
          schema:
            type: string
            format: uuid
      responses:
        '204':
          description: Successfully cancelled meeting invite. No response body is returned.
        '401':
          description: Unauthorized - missing or invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MeetingInviteError'
              examples:
                missingKey:
                  value:
                    error: Missing or invalid API key
                invalidKey:
                  value:
                    error: Invalid API key
        '403':
          description: Forbidden - API key lacks the required permission.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MeetingInviteError'
              examples:
                forbidden:
                  value:
                    error: Forbidden
        '404':
          description: Not Found - meeting invite was not found in the organization.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MeetingInviteError'
              examples:
                notFound:
                  value:
                    error: Not found
        '500':
          description: Server error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MeetingInviteError'
              examples:
                serverError:
                  value:
                    error: Failed to process meeting invite
        '502':
          description: Bad Gateway - meeting service is unavailable.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MeetingInviteError'
              examples:
                unavailable:
                  value:
                    error: Meeting service is unavailable
components:
  schemas:
    MeetingInviteError:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          description: Human-readable error message.
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````