> ## 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.

# Re-confirm the organization's default refund destination

> Resets the verification timestamp to now without changing the destination. Use this to clear a stale warning or rejection.



## OpenAPI

````yaml https://sandbox-api.borderless.xyz/v1/api-json post /v1/organizations/refunds/config/reconfirm
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/reconfirm:
    post:
      tags:
        - Refund Defaults
      summary: Re-confirm the organization's default refund destination
      description: >-
        Resets the verification timestamp to now without changing the
        destination. Use this to clear a stale warning or rejection.
      operationId: OrganizationRefundConfigController_reconfirmConfig
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RefundConfigEntity'
      security:
        - bearer: []
components:
  schemas:
    RefundConfigEntity:
      type: object
      properties:
        destination:
          description: The organization's default refund destination.
          allOf:
            - $ref: '#/components/schemas/OrgRefundDestinationDto'
        verifiedAt:
          type: string
          description: When the default was last set or re-confirmed.
          format: date-time
        isStaleWarning:
          type: boolean
          description: >-
            True when the default is older than 30 days and should be
            re-confirmed.
        isStaleReject:
          type: boolean
          description: >-
            True when the default is older than 90 days; automatic refunds to
            this default are paused until re-confirmed.
      required:
        - destination
        - verifiedAt
        - isStaleWarning
        - isStaleReject
    OrgRefundDestinationDto:
      type: object
      properties:
        type:
          description: >-
            How a refund should be handled if the transaction fails. `Address`
            returns funds to a per-network crypto address. `Source` returns
            funds to the original on-chain sender. `ProviderBalance` leaves
            funds in the client's account at the PFI.
          example: Address
          allOf:
            - $ref: '#/components/schemas/RefundDestinationType'
        addresses:
          minItems: 1
          description: >-
            Required when `type` is `Address`. One refund address per network.
            At refund time the address matching the transaction's network is
            used; networks without an entry have no default and fall back to
            per-transaction destinations.
          type: array
          items:
            $ref: '#/components/schemas/OrgRefundAddressDto'
        autoRefund:
          type: boolean
          description: >-
            Whether Borderless should automatically trigger the refund on
            failure. Defaults to `true`. Setting `false` records the plan as
            eligible but keeps it `Created` until ops dispatches manually.
          example: true
          default: true
      required:
        - type
    RefundDestinationType:
      type: string
      enum:
        - Address
        - Source
        - ProviderBalance
      description: >-
        How a refund should be handled if the transaction fails. `address`
        returns funds to a specific crypto address. `source` returns funds to
        the original on-chain sender (Yellowcard maps this to
        `settlementInfo.refundToSourceAddress`). `provider_balance` leaves funds
        in the client's account at the PFI.
    OrgRefundAddressDto:
      type: object
      properties:
        network:
          description: The network this refund address belongs to.
          example: ETHEREUM
          allOf:
            - $ref: '#/components/schemas/NetworkId'
        address:
          type: string
          description: The crypto address that should receive refunds on this network.
          example: '0x1234567890abcdef1234567890abcdef12345678'
      required:
        - network
        - address
    NetworkId:
      type: string
      enum:
        - POLYGON
        - ETHEREUM
        - TRON
        - BASE
        - OPTIMISM
        - BITCOIN
        - SOLANA
        - CELO
      description: The network this refund address belongs to.
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````