Skip to content

Latest commit

 

History

History
58 lines (38 loc) · 1.79 KB

SalesShipmentCommentRepositoryV1Api.md

File metadata and controls

58 lines (38 loc) · 1.79 KB

swagger_client.SalesShipmentCommentRepositoryV1Api

All URIs are relative to http://localhost/rest/default

Method HTTP request Description
sales_shipment_comment_repository_v1_save_post POST /V1/shipment/{id}/comments

sales_shipment_comment_repository_v1_save_post

SalesDataShipmentCommentInterface sales_shipment_comment_repository_v1_save_post(id, body=body)

Performs persist operations for a specified shipment comment.

Example

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.SalesShipmentCommentRepositoryV1Api()
id = 'id_example' # str | 
body = swagger_client.Body99() # Body99 |  (optional)

try: 
    api_response = api_instance.sales_shipment_comment_repository_v1_save_post(id, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling SalesShipmentCommentRepositoryV1Api->sales_shipment_comment_repository_v1_save_post: %s\n" % e)

Parameters

Name Type Description Notes
id str
body Body99 [optional]

Return type

SalesDataShipmentCommentInterface

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]