# openapi.api.CheckoutCartsGuestApi

## Load the API package
```dart
import 'package:openapi/api.dart';
```

All URIs are relative to *http://localhost*

Method | HTTP request | Description
------------- | ------------- | -------------
[**getGuestCart**](CheckoutCartsGuestApi.md#getguestcart) | **POST** /api/checkout/guest/carts | 


# **getGuestCart**
> GetCustomerCartResponseDto getGuestCart(getAllGuestsBody)



### Example
```dart
import 'package:openapi/api.dart';

final api = Openapi().getCheckoutCartsGuestApi();
final GetAllGuestsBody getAllGuestsBody = ; // GetAllGuestsBody | 

try {
    final response = api.getGuestCart(getAllGuestsBody);
    print(response);
} catch on DioError (e) {
    print('Exception when calling CheckoutCartsGuestApi->getGuestCart: $e\n');
}
```

### Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **getAllGuestsBody** | [**GetAllGuestsBody**](GetAllGuestsBody.md)|  | 

### Return type

[**GetCustomerCartResponseDto**](GetCustomerCartResponseDto.md)

### Authorization

No authorization required

### HTTP request headers

 - **Content-Type**: application/json
 - **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

