#Bart
1 messages · Page 1 of 1 (latest)
how can i create a ACH payment link in golang for my connected accounts?
And when you initialize you want to authenticate as your Connected Account: https://stripe.com/docs/api/connected_accounts?lang=go
You'll specifically want to set the payment_method_types to us_bank_account if you only want a link that supports ACH
this one isnt what i need since this one is for check out products,
i want to beable to create a custom payment amount
ahhh okie
You can use adjustable quantity to allow Customers to pay what they want
so i can omit the product id right
and just have quanitity and quanitity is in pennies correct
No you must put in a Price ID
and set a quantity that it will start at
Then you set adjustable_quantity.enabled: true
Which allows your customers to change the quantity of that line item
Sure
can the price ID be amnything?
and the quanittiy, say i want to set it to $10 usd
how would i do it
You have to create a Price object first either through API or Dashboard: https://stripe.com/docs/api/prices/create?lang=go
You'll also need a Product to associate that Price to
oh so.i can create a price object of 1 usd and set quanitity to 10?
Yep if you want to do it that way
thank you! ima test ths when i get home