08/18/2025

New dashboard updates!

Account Page Enhancements
  • You can now manage admin permissions for your team directly from the Account page — no support ticket needed.
  • Find a summary of monthly invoices under the Billing tab, with links to download detailed PDFs.
Help & Onboarding Resources
  • The left nav now includes quick access to our Help Center.
  • A detailed Onboarding Guide is available to help new developers create customers and send payments.
[Beta] New Payments Module
  • Our new payments experience is rolling out in dashboard (public beta).
  • We welcome your feedback!
07/20/2025

Handling Proof of Address Requests

We will be more consistently requesting proof of address when we detect conflicting location signals in a user’s KYC/KYB.If using the API, you can tell if a customer needs to submit proof of address by looking at the endorsements section of a customer response, where the requirement will show up as missing
{
  "endorsements": [
    {
      "name": "base",
      "status": "incomplete",
      "requirements": {
					...
          "missing": {
            "all_of": [  
              "proof_of_address",  
              ...  
            ]
          },
          ...
      },
    },
To submit a proof of address document via API, include documents in your customer put/post request body, with an entry where the purpose is proof_of_address
07/15/2025

Use Your Bridge Wallet to Automate Returns

You can now use a Bridge Wallet to seamlessly fund fiat returns.Bridge’s Transfer API already lets you return ACH, Wire, or SEPA deposits in cases of recalls, rejections, or refunds. Now, you can use a Bridge Wallet to fund those returns directly—no need to wait for a fresh deposit to initiate a payout.
  • Pre-fund your wallet at any time
  • Return funds instantly when needed
  • Simplify your flows
Learn more here!
07/15/2025

Additions to LiquidationAddress, VirtualAccount, and StaticMemo Fields

We have added the below fields to Bridge endpoints.1.customer_id added to LiquidationAddressYou can now identify which customer owns a liquidation address. Refer API reference at Get a liquidation address.
  1. created_atadded to VirtualAccount and StaticMemo
Timestamp fields are now included to help with auditing and sorting. Refer API reference at Get a Virtual Account.3.source_deposit_instructions.payment_rails added to StaticMemoIncludes the source details in the static memo response (supported rails right now are ACH & wire). Refer API reference at Get a Static Memo.4.destination_payment_railnow included in history recordsThe StaticMemo and VirtualAccount objects returned in history endpoints now show the destination_payment_rail (e.g. USD.USDC.polygon) once the payment completes successfully.Refer API reference at Virtual Account Activity and Static Memo Activity