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

# Delete SIP Configuration

> Logically deletes a SIP configuration. It triggers a detach process for all associated numbers (both inbound and outbound) against the external provider and updates the database records.



## OpenAPI

````yaml delete /sip/{id}
openapi: 3.0.0
info:
  title: ClearTalk API
  description: The ClearTalk API Documentation
  version: '1.0'
  contact:
    name: Developer Support
    email: devsupport@cleartalk.ai
servers:
  - url: https://api.cleartalk.ai
    description: ClearTalk AI API Server
security: []
tags: []
paths:
  /sip/{id}:
    delete:
      tags:
        - sip
      summary: Delete SIP Configuration
      description: >-
        Logically deletes a SIP configuration. It triggers a detach process for
        all associated numbers (both inbound and outbound) against the external
        provider and updates the database records.
      operationId: SIPController_deleteConfig
      parameters:
        - name: id
          required: true
          in: path
          description: The UUID of the SIP Configuration to delete
          schema:
            example: 550e8400-e29b-41d4-a716-446655440000
            type: string
      responses:
        '200':
          description: Configuration successfully deleted and numbers detached.
          content:
            application/json:
              schema:
                example:
                  success: true
                  message: Configuration deleted and associated numbers detached
                  id: 550e8400-e29b-41d4-a716-446655440000
        '404':
          description: Configuration not found or does not belong to user.
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: API Key for authentication

````