PHP code example of kruegge82 / jtlffn

1. Go to this page and download the library: Download kruegge82/jtlffn 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/ */

    

kruegge82 / jtlffn example snippets





apiInstance = new kruegge82\jtlffn\Api\AuthorizationsApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client()
);
$merchant_id = 'merchant_id_example'; // string | Merchant identifier
$warehouse_id = 'warehouse_id_example'; // string | Warehouse identifier
$shipping_method_id = 'shipping_method_id_example'; // string | Includes shipping methods that shall be deleted

try {
    $apiInstance->authorizationsDeleteShippingMethodAuthorization($merchant_id, $warehouse_id, $shipping_method_id);
} catch (Exception $e) {
    echo 'Exception when calling AuthorizationsApi->authorizationsDeleteShippingMethodAuthorization: ', $e->getMessage(), PHP_EOL;
}