#itgben
1 messages · Page 1 of 1 (latest)
hello! you may want to take a look at this guide : https://stripe.com/docs/terminal/features/connect
So in order to do a Direct Charge I need to issue the statements "stripe.terminal.locations.create" and "stripe.terminal.readers.create" everytime?
Is there anyway to associate a reader with a Connect account manually through the Dashboard?
what do you mean by associate a reader with a connect account?
const reader = await stripe.terminal.readers.create({
registration_code: "{{READER_REGISTRATION_CODE}}",
label: "Alice's Reader",
location: '{{LOCATION_ID}}'
,
}, {
stripeAccount: '{{CONNECTED_ACCOUNT_ID}}'
});
This code creates a reader associated with a Connect account right?
ah yeah, that code creates a reader associated with a Connect account. I don't know off the top of my head if you can do that via the Dashboard, but you can try it on your own Dashboard/connected account. You'd probably need to ensure the connected account has terminal enabled on their account first though which may not be very feasible in reality since you may have many connected accounts
So really I should run the code once and store the necessary data needed on my end in order to properly setup a Connect account with Reader use?
yep, that's right
Ok. thank you.