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

# Delete Integration

> Delete a platform integration



## OpenAPI

````yaml DELETE /agent/integration
openapi: 3.1.0
info:
  title: Aidan API
  description: API for managing AI agents (chatbots and voicebots) on the Outbox platform
  version: 1.0.0
servers:
  - url: https://api.callaidan.com
security: []
tags:
  - name: Webhooks
    description: >-
      **Inbound notifications.** After a voice call ends, Aidan POSTs JSON to
      the Webhook URL on your agent (Voice Agents settings or `webhook_url`).
      Your server receives these requests — they are not calls *to*
      `api.callaidan.com`. The documented path `/_reference/webhooks/...` exists
      only in this spec so the payload schema can appear in the API Reference;
      it is not callable on the production API.
paths:
  /agent/integration:
    delete:
      summary: Delete Integration
      description: Delete a platform integration
      requestBody:
        description: Integration ID to delete
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IntegrationDelete'
      responses:
        '200':
          description: Integration deleted successfully
        '400':
          description: Bad Request - Missing integration_id
        '401':
          description: Unauthorized - Invalid or missing API key
        '403':
          description: Forbidden - Insufficient permissions (requires level 2)
        '404':
          description: Integration not found
      security:
        - CompanyApiKey: []
components:
  schemas:
    IntegrationDelete:
      type: object
      required:
        - integration_id
      properties:
        integration_id:
          type: string
          description: ID of the integration to delete
  securitySchemes:
    CompanyApiKey:
      type: apiKey
      in: header
      name: Authorization
      description: Company API Key

````