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;








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"









share|improve this question



















  • 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

















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"









share|improve this question



















  • 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













0












0








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"









share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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 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












  • 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







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












1 Answer
1






active

oldest

votes


















1














As pointed out by @duck



stripe.setApiVersion('2019-03-14');


solve the issue!






share|improve this answer
























    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
    );



    );













    draft saved

    draft discarded


















    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









    1














    As pointed out by @duck



    stripe.setApiVersion('2019-03-14');


    solve the issue!






    share|improve this answer





























      1














      As pointed out by @duck



      stripe.setApiVersion('2019-03-14');


      solve the issue!






      share|improve this answer



























        1












        1








        1







        As pointed out by @duck



        stripe.setApiVersion('2019-03-14');


        solve the issue!






        share|improve this answer













        As pointed out by @duck



        stripe.setApiVersion('2019-03-14');


        solve the issue!







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 27 at 0:15









        GavelloGavello

        3901 gold badge5 silver badges19 bronze badges




        3901 gold badge5 silver badges19 bronze badges





















            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.



















            draft saved

            draft discarded
















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Obelisk of Theodosius Contents History Description Notes Bibliography Further reading External links Navigation menuAge of spirituality : late antique and early Christian art, third to seventh centuryOver 60 picturesObelisks of the World41°00′21.24″N 28°58′31.43″E / 41.0059000°N 28.9753972°E / 41.0059000; 28.97539727724550-7235741376235741376

            밀양 대씨 역사 각주 함께 보기 둘러보기 메뉴밀양 대씨

            1973년 목차 사건 문화 탄생 사망 노벨상 달력 둘러보기 메뉴