All URIs are relative to http://localhost/rest/default
Method | HTTP request | Description |
---|---|---|
sales_order_address_repository_v1_save_put | PUT /V1/orders/{parent_id} |
SalesDataOrderAddressInterface sales_order_address_repository_v1_save_put(parent_id, body=body)
Performs persist operations for a specified order address.
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.SalesOrderAddressRepositoryV1Api()
parent_id = 'parent_id_example' # str |
body = swagger_client.Body90() # Body90 | (optional)
try:
api_response = api_instance.sales_order_address_repository_v1_save_put(parent_id, body=body)
pprint(api_response)
except ApiException as e:
print("Exception when calling SalesOrderAddressRepositoryV1Api->sales_order_address_repository_v1_save_put: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
parent_id | str | ||
body | Body90 | [optional] |
SalesDataOrderAddressInterface
No authorization required
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]