SpringImport\Swagger\Magento2\Client\QuoteGuestShippingMethodManagementV1Api
May 18, 2017 ยท View on GitHub
All URIs are relative to http://t213.vg/rest/default
| Method | HTTP request | Description |
|---|---|---|
| quoteGuestShippingMethodManagementV1GetListGet | GET /V1/guest-carts/{cartId}/shipping-methods |
quoteGuestShippingMethodManagementV1GetListGet
\SpringImport\Swagger\Magento2\Client\Model\QuoteDataShippingMethodInterface[] quoteGuestShippingMethodManagementV1GetListGet($cartId)
List applicable shipping methods for a specified quote.
Example
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new SpringImport\Swagger\Magento2\Client\Api\QuoteGuestShippingMethodManagementV1Api();
$cartId = "cartId_example"; // string | The shopping cart ID.
try {
$result = $api_instance->quoteGuestShippingMethodManagementV1GetListGet($cartId);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling QuoteGuestShippingMethodManagementV1Api->quoteGuestShippingMethodManagementV1GetListGet: ', $e->getMessage(), PHP_EOL;
}
?>
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| cartId | string | The shopping cart ID. |
Return type
\SpringImport\Swagger\Magento2\Client\Model\QuoteDataShippingMethodInterface[]
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]