#capitanrex-ach-credit
1 messages · Page 1 of 1 (latest)
@earnest forge That is about ACH Credit Transfer and Sources right? The error means you only have $10 in the receiver/source
https://stripe.com/docs/sources/ach-credit-transfer#testing-ach-credit-transfer-payments
The amount included in the test transaction defaults to 10 USD. You can customize this amount by providing an email address of amount_{CUSTOM_AMOUNT}@example.com as the value for owner[email]. For example, to create a test transaction of the amount $42.42, use amount_4242@example.com
ok
one more question
that happens with ach credit transfer
but when i try to add a ach debit
im getting this error
When creating a source with a bank account, the source and the bank account must belong to the same merchant
I don't know what you mean "when I try to add a ach debit"
var sourceOptions = new SourceCreateOptions
{
Type = SourceType.AchDebit,
Currency = "usd",
Owner = new SourceOwnerOptions { Email = ach.Customer.Email },
Token = ach.Token
};
var source = await sourceService.CreateAsync(sourceOptions, requestOptions);