πReaders
Remember, the $direct variable will determine if the action is carried out on your platform stripe account or on the connected account.
Adding a reader
$store->registerTerminalReader([
'label' => 'Main POS Reader',
'registration_code' => $registrationCode, // Not needed for tap to pay
'location' => '$locationID',
], $direct);Get readers (E.G. by location)
$store->getTerminalReaders([
'location' => $locationID,
'limit' => 100
], $direct);Connecting to the reader
Last updated