Multi‑Currency Payouts Roll Out to Australia and France – What Shopify Merchants Need to Know

Shopify expands Multi‑Currency Payouts to Australia and France, letting Advanced and Plus merchants receive payouts in dozens of currencies. Learn who’s impacted, how to enable the feature, and the steps developers should take.

Multi‑Currency Payouts Roll Out to Australia and France – What Shopify Merchants Need to Know
6 sections

Shopify just expanded its Multi‑Currency Payouts feature to two major markets – Australia and France. If you run a store on the Advanced or Shopify Plus plan, you can now receive payouts in a broader set of currencies, reducing conversion fees and simplifying bookkeeping.

What Changed?

Effective immediately, eligible merchants in Australia can receive payouts in 13 currencies (AUD, NZD, USD, EUR, GBP, CAD, NOK, SEK, DKK, CHF, JPY, SGD, HKD). Those in France can receive payouts in 18 currencies (EUR, AUD, CAD, CHF, CZK, DKK, GBP, HKD, HUF, JPY, NOK, NZD, PLN, RON, SEK, SGD, USD, ZAR). The default payout currency remains AUD for Australian stores and EUR for French stores, but any supported currency can be paid into a bank account you add in the corresponding region.

Who Is Affected?

• Merchants on the Advanced or Shopify Plus plans in Australia or France gain direct access to the new payout options. • Developers building apps or custom integrations that interact with Shopify Payments need to be aware of the expanded payout‑currency list and may need to adjust validation, reporting, or UI components that previously assumed a single‑currency payout. • Finance teams will see more granular payout statements, so any automated reconciliation scripts should be reviewed.

How to Enable and Configure Multi‑Currency Payouts

  • From your Shopify admin, go to Settings > Payments > Shopify Payments. 2. Click “Manage” next to “Payout settings”. 3. Under “Supported payout currencies”, select the additional currencies you want to receive. 4. Add a bank account for each region where the selected currency is hosted (e.g., a US bank for USD, a UK bank for GBP, an EU IBAN for EUR). 5. Save your changes. The new payout schedule will take effect on the next payout cycle (usually next business day).
  • If you prefer to automate the setup, you can use the Admin GraphQL API to create payout bank accounts. Below is a minimal mutation example:

    mutation AddPayoutBankAccount($input: BankAccountInput!) {

    bankAccountCreate(input: $input) {

    bankAccount {

    id

    countryCode

    currency

    lastFourDigits

    }

    userErrors {

    field

    message

    }

    }

    }

    # Example variables for an Australian USD payout

    {

    "input": {

    "countryCode": "US",

    "currency": "USD",

    "accountNumber": "123456789",

    "routingNumber": "021000021",

    "bankName": "Chase Bank"

    }

    }

    Best Practices for Developers

  • Update any UI dropdowns that list supported payout currencies – pull the list dynamically via the GraphQL query shop { paymentSettings { supportedPayoutCurrencies } }. * Listen for the payouts/create webhook to trigger downstream accounting or tax‑calculation workflows, as the currency field may now contain values previously unseen (e.g., ZAR, HUF). * Adjust any currency‑conversion logic that assumed a one‑to‑one mapping between store currency and payout currency; now a single store can have multiple payout accounts with different base currencies.
  • Key Takeaways

  • Multi‑Currency Payouts are live for Australia (13 currencies) and France (18 currencies). - Only Advanced and Shopify Plus merchants can enable the feature. - Merchants must add a bank account in the appropriate region for each new currency. - Developers should refresh supported‑currency lists, handle new webhook payloads, and test any automated financial workflows against the expanded set.
  • Next Steps

    Ready to start receiving payouts in the currency that works best for your business? Log into your Shopify admin, enable the new currencies, and update your integrations today. Have questions or need help with API implementation? Drop a comment below or reach out to our Shopify Partner support team.

    Tags
    Sources

    Related Articles

    Capture WhatsApp Opt‑Ins Directly at Checkout
    Platform Updates

    Capture WhatsApp Opt‑Ins Directly at Checkout

    Shopify now lets merchants gather WhatsApp marketing consent right at checkout, turning every purchase into a lead‑generation opportunity. Learn how to enable the feature, what developers need to know, and best practices for turning opt‑ins into revenue.

    September 10, 20264 min
    Discounts Allocator Function API Preview Ends – Immediate Actions for Developers
    Platform Updates

    Discounts Allocator Function API Preview Ends – Immediate Actions for Developers

    The Discounts Allocator Function API preview is over and the API has been removed. Learn what changed, who is impacted, and how to update your app configuration to keep deployments running smoothly.

    September 10, 20263 min
    Create and Delete Dev Stores Directly from Shopify CLI 4.8
    Platform Updates

    Create and Delete Dev Stores Directly from Shopify CLI 4.8

    Shopify CLI 4.8 introduces terminal commands to create, list, inspect, and delete development stores, giving developers full control over their Dev Dashboard environments. Learn what changed, who it impacts, and how to automate store cleanup before hitting the new 250‑store limit.

    September 9, 20264 min
    Multiple Barcodes per Variant: What Shopify Merchants and Developers Need to Know
    Platform Updates

    Multiple Barcodes per Variant: What Shopify Merchants and Developers Need to Know

    Shopify now lets each product variant hold up to 20 barcodes, simplifying inventory across UPCs, EANs, ASINs, and custom codes. Learn how this change impacts your store, the API, CSV workflows, and the steps to start using it.

    September 8, 20264 min