πŸ—ΊοΈLocations

Currently we do not support "Zones", this will be available in future releases.

This page will list out the endpoints available for managing locations.

To persist with our contextual example of an e-commerce store, we'll assume they have opened a retail store and wish to use your platform to take payments in-store.

Remember, the $direct variable will determine if the action is carried out on your platform stripe account or on the connected account.

(true = connected, false = platform)

Adding a location

$store->addTerminalLocation([
    'display_name' => 'London Store',
    'address' => [
        'line1' => '1272 Valencia Street',
        'city' => 'San Francisco',
        'state' => 'CA',
        'country' => 'US',
        'postal_code' => '94110',
    ],
], $direct);

Get Locations

$store->getTerminalLocations($params, $direct);

Last updated