Simon Net
Simon Net

Reputation: 61

Restricting stripe shipping address by country

I am selling a physical product through Stripe Checkout (the native stripe version) and I'm looking to lock the shipping address to UK.

Has anyone any info on how this can be configured? Can't find it in docs.

Upvotes: 4

Views: 2354

Answers (2)

Pete
Pete

Reputation: 12553

If using the javascript client integration, you can specify the allowed countries if you enable shipping address collection.

    stripe.redirectToCheckout({
      ...
      shippingAddressCollection: {
        allowedCountries: ['DK'],
      },
    })

Upvotes: 2

koopajah
koopajah

Reputation: 25572

This is not something supported by Stripe Checkout at the moment. The best solution here would be to collect the shipping address in your own form before opening Stripe Checkout and only collect billing address in Checkout (or no address at all).

Upvotes: 1

Related Questions