#CapitanRex-DOTNET
1 messages · Page 1 of 1 (latest)
How did you help them created the account? By account link or Oauth?
If that was OAuth, they should have their secret key already
we create the account via API
If that was account link, they should setup the credential already when they are onboarded
but they want to access with a Link account
Which API did you use to create the account?
var service = new AccountService();
Account account = service.Create(options);
with this options
var options = new AccountCreateOptions
{
Type = "standard",
Country = "US",
BusinessProfile = new AccountBusinessProfileOptions
{
Mcc = "5734",
Name = setupMerchant.CreateMerchant.Name,
SupportEmail = setupMerchant.CreateMerchant.Email
},
Email = setupMerchant.CreateMerchant.Email,
};