PHP code example of mage2pro / square-php-sdk

1. Go to this page and download the library: Download mage2pro/square-php-sdk library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

mage2pro / square-php-sdk example snippets


$ php composer.phar install




$transaction_api = new \SquareConnect\Api\TransactionApi();
$customerCard_api = new \SquareConnect\Api\CustomerCardApi();
$customer_api = new \SquareConnect\Api\CustomerApi();
$location_api = new \SquareConnect\Api\LocationApi();
$refund_api = new \SquareConnect\Api\RefundApi();

$location_api = new \SquareConnect\Api\LocationApi();

$customer_api = new \SquareConnect\Api\CustomerApi();

$customer_api->listCustomers($authorization, $cursor = null);

$customerCard_api = new \SquareConnect\Api\CustomerCardApi();

$transaction_api = new \SquareConnect\Api\TransactionApi();

$transaction_api->listTransactions($authorization, $location_id, $begin_time = null, $end_time = null, $sort_order = null, $cursor = null)

$refund_api = new \SquareConnect\Api\RefundApi();

$refund_api->listRefunds($authorization, $location_id, $begin_time = null, $end_time = null, $sort_order = null, $cursor = null)