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

# Disconnect integration

> Clears the stored credentials for one integration on the project, every slot it owns. The response carries only a confirmation message, so refetch the integration list to see it disconnected.



## OpenAPI

````yaml /specs-prettified/realtime/openapi.stable.json delete /v1/stable/integration/{integration}
openapi: 3.0.0
info:
  title: Realtime
  description: Realtime gateway API service
  version: 1.0.0
  contact: {}
servers:
  - url: https://realtime-api.voiceflow.com
security: []
tags: []
paths:
  /v1/stable/integration/{integration}:
    delete:
      tags:
        - Integration
      summary: Disconnect integration
      description: Clears the stored credentials for one integration on the project,
        every slot it owns. The response carries only a confirmation message, so
        refetch the integration list to see it disconnected.
      operationId: StableIntegrationController_disconnect
      parameters:
        - name: integration
          required: true
          in: path
          schema:
            type: string
          x-vf-doc:
            description: The integration identifier, as `GET /v1/stable/integration` lists
              it (for example `twilio`).
          description: The integration identifier, as `GET /v1/stable/integration` lists
            it (for example `twilio`).
        - name: projectID
          required: true
          in: query
          schema:
            type: string
            description: The ID of the project to operate on.
      responses:
        "200":
          description: Confirms the integration was disconnected. The body is a message
            only, so refetch the integration list to see `connected` turn false.
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/StableDeleteResponse"
          x-vf-doc:
            description: Confirms the integration was disconnected. The body is a message
              only, so refetch the integration list to see `connected` turn
              false.
      security:
        - token: []
components:
  schemas:
    StableDeleteResponse:
      type: object
      properties:
        message:
          type: string
          description: A human-readable message confirming the deletion.
      required:
        - message
  securitySchemes:
    token:
      scheme: bearer
      bearerFormat: JWT
      type: http
      description: Voiceflow bearer token
````
