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

# Cancel Invitation

> Revoke a pending company invitation by ID. Has no effect if the invite has already been accepted/deleted.



## OpenAPI

````yaml DELETE /settings/company/invite/
openapi: 3.1.0
info:
  title: Outbox AI API
  description: API for managing AI agents (chatbots and voicebots) on the Outbox platform
  version: 1.0.0
servers:
  - url: https://api.getoutbox.ai
security: []
paths:
  /settings/company/invite/:
    delete:
      tags:
        - settings
      summary: Cancel Staff Invitation
      description: >-
        Revoke a pending company invitation by ID. Has no effect if the invite
        has already been accepted/deleted.
      operationId: settings_company_invite_destroy
      responses:
        '200':
          description: Invitation removed (idempotent).
      security:
        - jwtAuth: []
        - {}
components:
  securitySchemes:
    jwtAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````