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

# Remove the organization's default refund destination

> Removes the default. Refunds will then fall back to per-transaction destinations.



## OpenAPI

````yaml https://sandbox-api.borderless.xyz/v1/api-json delete /v1/organizations/refunds/config
openapi: 3.0.0
info:
  title: Borderless API
  description: The Borderless API documentation.
  version: '1.0'
  contact: {}
servers:
  - url: https://sandbox-api.borderless.xyz
security: []
tags: []
paths:
  /v1/organizations/refunds/config:
    delete:
      tags:
        - Refund Defaults
      summary: Remove the organization's default refund destination
      description: >-
        Removes the default. Refunds will then fall back to per-transaction
        destinations.
      operationId: OrganizationRefundConfigController_deleteConfig
      parameters: []
      responses:
        '204':
          description: Default removed.
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````