Stripe Connect update connected accountscorrect way to use Stripe's stripe_account header from oauth with meteorStripe Charge Connected AccountIn Rails4 app, integrating Stripe, but Stripe says “Received unknown parameter: type”Stripe Connect and Managed AccountsCharge connected stripe accountPass additional field to Laravel Cashier subscriptionConnect Account with StripeSafely update Stripe Custom Connect Account From BrowserStripe Connect - Migrating Existing AccountsStripe connect: List subscription plans for a connected account
Get content of CMS Block in Magento 1.x
How do Canadians get a visa to go to Saudi Arabia?
Applications of pure mathematics in operations research
If the Moon were impacted by a suitably sized meteor, how long would it take to impact the Earth?
Password management for kids - what's a good way to start?
Why have both: BJT and FET transistors on IC output?
Bash script redirect all output to file
Backpacking with incontinence
How to innovate in OR
Were there any unmanned expeditions to the moon that returned to Earth prior to Apollo?
"Fewer errors means better products" or "Fewer errors mean better products"?
How to crop this photo of water drops on a leaf to improve the composition?
Why is the "I" in "Indigenous crisis" capitalized?
Constant Scan spooling
How to let cacti grow even if no player is near?
UX writing: When to use "we"?
How does Asimov's second law deal with contradictory orders from different people?
How to delete a line from a variable?
Russian pronunciation of /etc (a directory)
Why do we need a voltage divider when we get the same voltage at the output as the input?
What to expect in a jazz audition
What is the most 'environmentally friendly' way to learn to fly?
Using a different Subscriber Key in Marketing Cloud when using MC Connector
For attacks with ranged weapons, is the attacker's Dexterity bonus added to the damage roll?
Stripe Connect update connected accounts
correct way to use Stripe's stripe_account header from oauth with meteorStripe Charge Connected AccountIn Rails4 app, integrating Stripe, but Stripe says “Received unknown parameter: type”Stripe Connect and Managed AccountsCharge connected stripe accountPass additional field to Laravel Cashier subscriptionConnect Account with StripeSafely update Stripe Custom Connect Account From BrowserStripe Connect - Migrating Existing AccountsStripe connect: List subscription plans for a connected account
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I'm experimenting with stripe connect
what I'm doing is when a vendor is created on my platfom I also create a stripe connect account for him
stripe.accounts.create(type: 'custom', country:'IT')
then I ask the new user to complete the activation process and update the account https://stripe.com/docs/api/accounts/update
stripe.accounts.update(id, req.body);
where req.body is (in case of an individual account)
"business_type":"individual",
"company":null,
"individual":
"first_name":"Sam",
"last_name":"Morrison",
"address":
"city":"Bergamo",
"line1":"Via Dipinta,5",
"postal_code":"24129"
,
"dob": "year":"1979", "month":"03", "day":"14"
but I get an error response that indicate
Received unknown parameter: business_type"
stripe-payments
add a comment |
I'm experimenting with stripe connect
what I'm doing is when a vendor is created on my platfom I also create a stripe connect account for him
stripe.accounts.create(type: 'custom', country:'IT')
then I ask the new user to complete the activation process and update the account https://stripe.com/docs/api/accounts/update
stripe.accounts.update(id, req.body);
where req.body is (in case of an individual account)
"business_type":"individual",
"company":null,
"individual":
"first_name":"Sam",
"last_name":"Morrison",
"address":
"city":"Bergamo",
"line1":"Via Dipinta,5",
"postal_code":"24129"
,
"dob": "year":"1979", "month":"03", "day":"14"
but I get an error response that indicate
Received unknown parameter: business_type"
stripe-payments
2
What API version are you using? The structure of Connect changed significantly with2019-02-19--- if you're using a version before that it'll be different and you may want to upgrade. stripe.com/docs/upgrades#2019-02-19
– duck
Mar 26 at 23:38
Updated to 2019-03-14 stripe.setApiVersion('2019-03-14'); and works as expected! Thanks
– Gavello
Mar 27 at 0:14
add a comment |
I'm experimenting with stripe connect
what I'm doing is when a vendor is created on my platfom I also create a stripe connect account for him
stripe.accounts.create(type: 'custom', country:'IT')
then I ask the new user to complete the activation process and update the account https://stripe.com/docs/api/accounts/update
stripe.accounts.update(id, req.body);
where req.body is (in case of an individual account)
"business_type":"individual",
"company":null,
"individual":
"first_name":"Sam",
"last_name":"Morrison",
"address":
"city":"Bergamo",
"line1":"Via Dipinta,5",
"postal_code":"24129"
,
"dob": "year":"1979", "month":"03", "day":"14"
but I get an error response that indicate
Received unknown parameter: business_type"
stripe-payments
I'm experimenting with stripe connect
what I'm doing is when a vendor is created on my platfom I also create a stripe connect account for him
stripe.accounts.create(type: 'custom', country:'IT')
then I ask the new user to complete the activation process and update the account https://stripe.com/docs/api/accounts/update
stripe.accounts.update(id, req.body);
where req.body is (in case of an individual account)
"business_type":"individual",
"company":null,
"individual":
"first_name":"Sam",
"last_name":"Morrison",
"address":
"city":"Bergamo",
"line1":"Via Dipinta,5",
"postal_code":"24129"
,
"dob": "year":"1979", "month":"03", "day":"14"
but I get an error response that indicate
Received unknown parameter: business_type"
stripe-payments
stripe-payments
asked Mar 26 at 23:08
GavelloGavello
3901 gold badge5 silver badges19 bronze badges
3901 gold badge5 silver badges19 bronze badges
2
What API version are you using? The structure of Connect changed significantly with2019-02-19--- if you're using a version before that it'll be different and you may want to upgrade. stripe.com/docs/upgrades#2019-02-19
– duck
Mar 26 at 23:38
Updated to 2019-03-14 stripe.setApiVersion('2019-03-14'); and works as expected! Thanks
– Gavello
Mar 27 at 0:14
add a comment |
2
What API version are you using? The structure of Connect changed significantly with2019-02-19--- if you're using a version before that it'll be different and you may want to upgrade. stripe.com/docs/upgrades#2019-02-19
– duck
Mar 26 at 23:38
Updated to 2019-03-14 stripe.setApiVersion('2019-03-14'); and works as expected! Thanks
– Gavello
Mar 27 at 0:14
2
2
What API version are you using? The structure of Connect changed significantly with
2019-02-19 --- if you're using a version before that it'll be different and you may want to upgrade. stripe.com/docs/upgrades#2019-02-19– duck
Mar 26 at 23:38
What API version are you using? The structure of Connect changed significantly with
2019-02-19 --- if you're using a version before that it'll be different and you may want to upgrade. stripe.com/docs/upgrades#2019-02-19– duck
Mar 26 at 23:38
Updated to 2019-03-14 stripe.setApiVersion('2019-03-14'); and works as expected! Thanks
– Gavello
Mar 27 at 0:14
Updated to 2019-03-14 stripe.setApiVersion('2019-03-14'); and works as expected! Thanks
– Gavello
Mar 27 at 0:14
add a comment |
1 Answer
1
active
oldest
votes
As pointed out by @duck
stripe.setApiVersion('2019-03-14');
solve the issue!
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55367473%2fstripe-connect-update-connected-accounts%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
As pointed out by @duck
stripe.setApiVersion('2019-03-14');
solve the issue!
add a comment |
As pointed out by @duck
stripe.setApiVersion('2019-03-14');
solve the issue!
add a comment |
As pointed out by @duck
stripe.setApiVersion('2019-03-14');
solve the issue!
As pointed out by @duck
stripe.setApiVersion('2019-03-14');
solve the issue!
answered Mar 27 at 0:15
GavelloGavello
3901 gold badge5 silver badges19 bronze badges
3901 gold badge5 silver badges19 bronze badges
add a comment |
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55367473%2fstripe-connect-update-connected-accounts%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
What API version are you using? The structure of Connect changed significantly with
2019-02-19--- if you're using a version before that it'll be different and you may want to upgrade. stripe.com/docs/upgrades#2019-02-19– duck
Mar 26 at 23:38
Updated to 2019-03-14 stripe.setApiVersion('2019-03-14'); and works as expected! Thanks
– Gavello
Mar 27 at 0:14