Hi,
I am working on a Stripe project that requires me to modify the stripe-version header for specific Stripe actions.
Example case: Stripe create account. I need to update the stripe-version to include 'unified_accounts_beta=v1'
curl -X POST "https://api.stripe.com/v1/accounts" \
-u 'REPLACE_WITH_YOUR_SECRET_KEY': \
-H "Stripe-Version: 2020-08-27;unified_accounts_beta=v1" \
-d "controller[application][pricing_controls]"="true" \
-d "controller[dashboard][type]"="full" \
-d "controller[application][loss_liable]"="false" \
-d "country"="UK" \
I have also confirmed with Stripe that this amendment is only to be included on specific calls, so I can't just include 'unified_accounts_beta=v1' on all calls.
So, I request that each Stripe action include a modifier option to update the `Preformatted stripe-version header. '
Thanks
Ray