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

# Delete an Identity’s Integration

> Disconnect a identity from a specific integration.

When the integration is deleted successfully, Edges posts to your workspace **integration webhook** (if you configured one under [Developer settings](https://app.edges.run/settings/developers)).

The payload uses `event_type: "integration"` and **`event: "DELETED"`** so you can tear down local state or stop workflows tied to that identity and integration.

For the full JSON shape and other `event` values, see [LinkedIn integration webhooks — Setup process](/v1/identities/linkedin#setup-process).


## OpenAPI

````yaml v1/api/business.json delete /identities/{identity_uid}/integrations/{integration}
openapi: 3.1.0
info:
  title: ED's Public API
  description: ED's Public API
  version: 26.622.88
servers:
  - url: https://api.edges.run/v1/
security:
  - APIKeyHeader: []
paths:
  /identities/{identity_uid}/integrations/{integration}:
    delete:
      tags:
        - Core
      summary: Disconnect a user from a specific integration.
      description: Delete a User's Integration
      operationId: delete_identities_integrations
      parameters:
        - name: identity_uid
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Identity Uid
        - name: integration
          in: path
          required: true
          schema:
            type: string
            title: Integration
      responses:
        '200':
          description: Successfully deleted the requested account.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericResponse_of_NoData'
              example: {}
        '403':
          description: The requested identity does not belong to the current workspace.
          content:
            application/json:
              example:
                message: >-
                  The requested identity does not belong to the current
                  workspace.
                error_label: DELETE_ONE_ACCOUNT_403_FORBIDDEN
        '404':
          description: Not Found
          content:
            application/json:
              examples:
                Integration Not Found:
                  summary: Couldn't find the targeted integration.
                  value:
                    message: Integration not found.
                    error_label: INTEGRATION_404_NOT_FOUND
                    params:
                      details: >-
                        The provided integration does not exist. Please provide
                        a valid integration.
                      valid_integration_permalinks:
                        - linkedin
                        - dropcontact
                        - lemlist
                        - ...
                Account Not Found:
                  summary: Couldn't find the targeted account.
                  value:
                    message: Account not found.
                    error_label: ACCOUNT_404_NOT_FOUND
                    params:
                      details: Could not find Account
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GenericResponse_of_NoData:
      properties: {}
      type: object
      title: GenericResponse_of_NoData
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        API key required for authentication. Add your API key in the X-API-Key
        header.

````