Skip to content

Latest commit

 

History

History
164 lines (112 loc) · 6.99 KB

SalesShipmentRepositoryV1Api.md

File metadata and controls

164 lines (112 loc) · 6.99 KB

swagger_client.SalesShipmentRepositoryV1Api

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

Method HTTP request Description
sales_shipment_repository_v1_get_get GET /V1/shipment/{id}
sales_shipment_repository_v1_get_list_get GET /V1/shipments
sales_shipment_repository_v1_save_post POST /V1/shipment/

sales_shipment_repository_v1_get_get

SalesDataShipmentInterface sales_shipment_repository_v1_get_get(id)

Loads a specified shipment.

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.SalesShipmentRepositoryV1Api()
id = 56 # int | The shipment ID.

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

Parameters

Name Type Description Notes
id int The shipment ID.

Return type

SalesDataShipmentInterface

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]

sales_shipment_repository_v1_get_list_get

SalesDataShipmentSearchResultInterface sales_shipment_repository_v1_get_list_get(search_criteria_filter_groups_filters_field=search_criteria_filter_groups_filters_field, search_criteria_filter_groups_filters_value=search_criteria_filter_groups_filters_value, search_criteria_filter_groups_filters_condition_type=search_criteria_filter_groups_filters_condition_type, search_criteria_sort_orders_field=search_criteria_sort_orders_field, search_criteria_sort_orders_direction=search_criteria_sort_orders_direction, search_criteria_page_size=search_criteria_page_size, search_criteria_current_page=search_criteria_current_page)

Lists shipments that match specified search criteria. This call returns an array of objects, but detailed information about each object’s attributes might not be included. See http://devdocs.magento.com/codelinks/attributes.html#ShipmentRepositoryInterface to determine which call to use to get detailed information about all attributes for an object.

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.SalesShipmentRepositoryV1Api()
search_criteria_filter_groups_filters_field = 'search_criteria_filter_groups_filters_field_example' # str | Field (optional)
search_criteria_filter_groups_filters_value = 'search_criteria_filter_groups_filters_value_example' # str | Value (optional)
search_criteria_filter_groups_filters_condition_type = 'search_criteria_filter_groups_filters_condition_type_example' # str | Condition type (optional)
search_criteria_sort_orders_field = 'search_criteria_sort_orders_field_example' # str | Sorting field. (optional)
search_criteria_sort_orders_direction = 'search_criteria_sort_orders_direction_example' # str | Sorting direction. (optional)
search_criteria_page_size = 56 # int | Page size. (optional)
search_criteria_current_page = 56 # int | Current page. (optional)

try: 
    api_response = api_instance.sales_shipment_repository_v1_get_list_get(search_criteria_filter_groups_filters_field=search_criteria_filter_groups_filters_field, search_criteria_filter_groups_filters_value=search_criteria_filter_groups_filters_value, search_criteria_filter_groups_filters_condition_type=search_criteria_filter_groups_filters_condition_type, search_criteria_sort_orders_field=search_criteria_sort_orders_field, search_criteria_sort_orders_direction=search_criteria_sort_orders_direction, search_criteria_page_size=search_criteria_page_size, search_criteria_current_page=search_criteria_current_page)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling SalesShipmentRepositoryV1Api->sales_shipment_repository_v1_get_list_get: %s\n" % e)

Parameters

Name Type Description Notes
search_criteria_filter_groups_filters_field str Field [optional]
search_criteria_filter_groups_filters_value str Value [optional]
search_criteria_filter_groups_filters_condition_type str Condition type [optional]
search_criteria_sort_orders_field str Sorting field. [optional]
search_criteria_sort_orders_direction str Sorting direction. [optional]
search_criteria_page_size int Page size. [optional]
search_criteria_current_page int Current page. [optional]

Return type

SalesDataShipmentSearchResultInterface

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]

sales_shipment_repository_v1_save_post

SalesDataShipmentInterface sales_shipment_repository_v1_save_post(body=body)

Performs persist operations for a specified shipment.

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.SalesShipmentRepositoryV1Api()
body = swagger_client.Body98() # Body98 |  (optional)

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

Parameters

Name Type Description Notes
body Body98 [optional]

Return type

SalesDataShipmentInterface

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]