diff --git a/sp_api/api/vendor_shipments/vendor_shipments.py b/sp_api/api/vendor_shipments/vendor_shipments.py
index 799581bb..c7bd6e0b 100644
--- a/sp_api/api/vendor_shipments/vendor_shipments.py
+++ b/sp_api/api/vendor_shipments/vendor_shipments.py
@@ -14,9 +14,9 @@ class VendorShipments(Client):
@sp_endpoint("/vendor/shipping/v1/shipmentConfirmations", method="POST")
def submit_shipment_confirmations(self, **kwargs) -> ApiResponse:
"""
- submit_shipment_confirmations(self, **kwargs) -> ApiResponse
+ submit_shipment_confirmations(self, **kwargs) -> ApiResponse
- Submits one or more shipment confirmations for vendor orders.
+ Submits one or more shipment confirmations for vendor orders.
**Usage Plan:**
@@ -42,9 +42,9 @@ def submit_shipment_confirmations(self, **kwargs) -> ApiResponse:
@sp_endpoint("/vendor/shipping/v1/shipments", method="POST")
def submit_shipments(self, **kwargs) -> ApiResponse:
"""
- submit_shipments(self, **kwargs) -> ApiResponse
+ submit_shipments(self, **kwargs) -> ApiResponse
- Submits one or more shipment request for vendor Orders.
+ Submits one or more shipment request for vendor Orders.
**Usage Plan:**
@@ -85,51 +85,28 @@ def get_shipment_details(self, **kwargs) -> ApiResponse:
Args:
key limit:integer | The limit to the number of records returned. Default value is 50 records.
-
key sortOrder:string | Sort in ascending or descending order by purchase order creation date.
-
key nextToken:string | Used for pagination when there are more shipments than the specified result size limit.
-
key createdAfter:string | Get Shipment Details that became available after this timestamp will be included in the result. Must be in ISO 8601 format.
-
key createdBefore:string | Get Shipment Details that became available before this timestamp will be included in the result. Must be in ISO 8601 format.
-
key shipmentConfirmedBefore:string | Get Shipment Details by passing Shipment confirmed create Date Before. Must be in ISO 8601 format.
-
key shipmentConfirmedAfter:string | Get Shipment Details by passing Shipment confirmed create Date After. Must be in ISO 8601 format.
-
key packageLabelCreatedBefore:string | Get Shipment Details by passing Package label create Date by buyer. Must be in ISO 8601 format.
-
key packageLabelCreatedAfter:string | Get Shipment Details by passing Package label create Date After by buyer. Must be in ISO 8601 format.
-
key shippedBefore:string | Get Shipment Details by passing Shipped Date Before. Must be in ISO 8601 format.
-
key shippedAfter:string | Get Shipment Details by passing Shipped Date After. Must be in ISO 8601 format.
-
key estimatedDeliveryBefore:string | Get Shipment Details by passing Estimated Delivery Date Before. Must be in ISO 8601 format.
-
key estimatedDeliveryAfter:string | Get Shipment Details by passing Estimated Delivery Date Before. Must be in ISO 8601 format.
-
key shipmentDeliveryBefore:string | Get Shipment Details by passing Shipment Delivery Date Before. Must be in ISO 8601 format.
-
key shipmentDeliveryAfter:string | Get Shipment Details by passing Shipment Delivery Date After. Must be in ISO 8601 format.
-
key requestedPickUpBefore:string | Get Shipment Details by passing Before Requested pickup date. Must be in ISO 8601 format.
-
key requestedPickUpAfter:string | Get Shipment Details by passing After Requested pickup date. Must be in ISO 8601 format.
-
key scheduledPickUpBefore:string | Get Shipment Details by passing Before scheduled pickup date. Must be in ISO 8601 format.
-
key scheduledPickUpAfter:string | Get Shipment Details by passing After Scheduled pickup date. Must be in ISO 8601 format.
-
key currentShipmentStatus:string | Get Shipment Details by passing Current shipment status.
-
key vendorShipmentIdentifier:string | Get Shipment Details by passing Vendor Shipment ID
-
key buyerReferenceNumber:string | Get Shipment Details by passing buyer Reference ID
-
key buyerWarehouseCode:string | Get Shipping Details based on buyer warehouse code. This value should be same as 'shipToParty.partyId' in the Shipment.
-
key sellerWarehouseCode:string | Get Shipping Details based on vendor warehouse code. This value should be same as 'sellingParty.partyId' in the Shipment.