#govind - connect
1 messages · Page 1 of 1 (latest)
acct_1LOGRb2evZ2HlUMP
var options = new AccountCreateOptions
{
Type = "custom",
Country = "US",
Email = vendorDetails.Vendor.Email,
Capabilities = new AccountCapabilitiesOptions
{
CardPayments = new AccountCapabilitiesCardPaymentsOptions
{
Requested = true,
},
Transfers = new AccountCapabilitiesTransfersOptions
{
Requested = true,
},
},
BusinessType="company",
};
var service = new AccountService();
service.Create(options);
var Account = service.Create(options);
my code
and how to create non restricted connected account with company type