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

# Delete a saved funder integration for an environment

> Unlinks the Integration from the broker's BrokerFunder for the given environment. The Integration row stays in the DB but is no longer reachable from any self-service flow. Idempotent re-deletes return 404.




## OpenAPI

````yaml https://app.herondata.io/swagger delete /api/funder_integrations/{funder_heron_id}/
openapi: 3.0.0
info:
  contact:
    email: support@herondata.io
    name: Support
  title: Heron Data API
  version: '2021-07-19'
servers:
  - description: Production
    url: https://app.herondata.io
security:
  - ApiKeyAuth:
      - key_XXX
externalDocs:
  description: Read Tutorial
  url: https://docs.herondata.io/
paths:
  /api/funder_integrations/{funder_heron_id}/:
    delete:
      summary: Delete a saved funder integration for an environment
      description: >
        Unlinks the Integration from the broker's BrokerFunder for the given
        environment. The Integration row stays in the DB but is no longer
        reachable from any self-service flow. Idempotent re-deletes return 404.
      parameters:
        - in: path
          name: funder_heron_id
          required: true
          schema:
            type: string
        - in: query
          name: environment
          required: true
          schema:
            enum:
              - staging
              - production
            type: string
      responses:
        '204':
          description: Integration deleted
        '404':
          description: Funder not linked, or no integration configured for this environment
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: x-api-key
      type: apiKey

````