All URIs are relative to http://localhost/rest/default
Method | HTTP request | Description |
---|---|---|
quote_cart_total_management_v1_collect_totals_put | PUT /V1/carts/mine/collect-totals |
QuoteDataTotalsInterface quote_cart_total_management_v1_collect_totals_put(body=body)
Set shipping/billing methods and additional data for cart and collect totals.
from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = swagger_client.QuoteCartTotalManagementV1Api()
body = swagger_client.Body77() # Body77 | (optional)
try:
api_response = api_instance.quote_cart_total_management_v1_collect_totals_put(body=body)
pprint(api_response)
except ApiException as e:
print("Exception when calling QuoteCartTotalManagementV1Api->quote_cart_total_management_v1_collect_totals_put: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
body | Body77 | [optional] |
No authorization required
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]