#milashin-multi-cards

1 messages · Page 1 of 1 (latest)

fluid mantle
#

Hi there, when you mention link several cards to one account, are you referring to adding multiple credit cards to the same Customer?

stable dove
#

Sorry, I meant accaunt

fluid mantle
stable dove
fluid mantle
#

I was wondering what "onboard" is referring to?

stable dove
#

Connect Onboarding flow

formal zinc
#

I'm not sure I understand what you are trying to do.
You onboarded a Connect account, and you would like to updated their payment details?

formal zinc
stable dove
#

And can I add multiple cards to one account?

formal zinc
#

The link I just shared mention:

By default, providing an external account sets it as the new default external account for its currency, and deletes the old default if one exists. To add additional external accounts without replacing the existing default for the currency, use the bank account or card creation API.

stable dove
#

StripeConfiguration.ApiKey = "sk_test_51JoXDhDvVKOrBzHUkf80xnteuSNFpXWHq9Uq2DwgU0Rv2YAkMlHRFJFg4udOSkF87o28cLkfTh8HfDV12St7GPSt00RX81HA5R";

var options = new CardCreateOptions
{
Source = "tok_visa",
};
var service = new CardService();
service.Create("cus_KwxfvWQRFoCZUx", options);

#

In the example there is only code for customer

#

How do I link new card to account?

formal zinc
stable dove
#

var options = new CardholderCreateOptions
{
Billing = new CardholderBillingOptions
{
Address = new AddressOptions
{
Line1 = "123 Main Street",
City = "San Francisco",
State = "CA",
PostalCode = "94111",
Country = "US",
},
},
Email = "jenny.rosen@example.com",
PhoneNumber = "+18008675309",
Name = "Jenny Rosen",
Status = "active",
Type = "individual",
};

                var requestOptions = new RequestOptions();
                requestOptions.StripeAccount = "acct_1KGp0URnbN88WQRa";

                var service = new CardholderService();
                var card = service.Create(options, requestOptions);
#

What am I doing wrong?

formal zinc
stable dove
#

Let's explain the problem again:

  1. We create an express account using Onboarding
  2. The user independently (using the link that we generated), through the web interface, fills in all the necessary data and binds the card

How can we add another card to this user account? How can we change the data of an already linked card?

zenith oasis
#

@stable dove you redirect them to the Express dashboard and they do it themselves there

#

ah no wait.

#

when you say Card you mean, a card for "pay-ins"? Like what we talked about before, a Customer on your platform account that you charge and pretend is the same person as the connected account in your system?

#

because that has nothing to do with CardholderCreateOptions which as Soma said is about Issuing which is a totally different product

#

unfortunately you seem very lost