All URIs are relative to https://connect.squareup.com
Method | HTTP request | Description |
---|---|---|
listLocations | GET /v1/me/locations | Provides details for a business's locations, including their IDs. |
retrieveBusiness | GET /v1/me | Get a business's information. |
\SquareConnect\Model\V1Merchant[] listLocations()
Provides details for a business's locations, including their IDs.
Provides details for a business's locations, including their IDs.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: oauth2
SquareConnect\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$api_instance = new SquareConnect\Api\V1LocationsApi();
try {
$result = $api_instance->listLocations();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling V1LocationsApi->listLocations: ', $e->getMessage(), PHP_EOL;
}
?>
This endpoint does not need any parameter.
\SquareConnect\Model\V1Merchant[]
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\SquareConnect\Model\V1Merchant retrieveBusiness()
Get a business's information.
Get a business's information.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: oauth2
SquareConnect\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$api_instance = new SquareConnect\Api\V1LocationsApi();
try {
$result = $api_instance->retrieveBusiness();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling V1LocationsApi->retrieveBusiness: ', $e->getMessage(), PHP_EOL;
}
?>
This endpoint does not need any parameter.
\SquareConnect\Model\V1Merchant
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]