Skip to main content
POST
/
v1
/
organizations
/
refunds
/
config
/
reconfirm
Re-confirm the organization's default refund destination
curl --request POST \
  --url https://sandbox-api.borderless.xyz/v1/organizations/refunds/config/reconfirm \
  --header 'Authorization: Bearer <token>'
{
  "destination": {
    "type": "Address",
    "addresses": [
      {
        "network": "ETHEREUM",
        "address": "0x1234567890abcdef1234567890abcdef12345678"
      }
    ],
    "autoRefund": true
  },
  "verifiedAt": "2023-11-07T05:31:56Z",
  "isStaleWarning": true,
  "isStaleReject": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json
destination
object
required

The organization's default refund destination.

verifiedAt
string<date-time>
required

When the default was last set or re-confirmed.

isStaleWarning
boolean
required

True when the default is older than 30 days and should be re-confirmed.

isStaleReject
boolean
required

True when the default is older than 90 days; automatic refunds to this default are paused until re-confirmed.