Skip to content
This repository has been archived by the owner on Aug 18, 2020. It is now read-only.

Latest commit

 

History

History
54 lines (34 loc) · 1.52 KB

QuoteGuestCartRepositoryV1Api.md

File metadata and controls

54 lines (34 loc) · 1.52 KB

Swagger\Client\QuoteGuestCartRepositoryV1Api

All URIs are relative to http://t213.vg/rest/default

Method HTTP request Description
quoteGuestCartRepositoryV1GetGet GET /V1/guest-carts/{cartId}

quoteGuestCartRepositoryV1GetGet

\Swagger\Client\Model\QuoteDataCartInterface quoteGuestCartRepositoryV1GetGet($cart_id)

Enable a guest user to return information for a specified cart.

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\Api\QuoteGuestCartRepositoryV1Api();
$cart_id = "cart_id_example"; // string | 

try {
    $result = $api_instance->quoteGuestCartRepositoryV1GetGet($cart_id);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling QuoteGuestCartRepositoryV1Api->quoteGuestCartRepositoryV1GetGet: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
cart_id string

Return type

\Swagger\Client\Model\QuoteDataCartInterface

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]