Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
saleweaver committed Dec 14, 2024
1 parent 5b8bbd2 commit a67596d
Showing 1 changed file with 4 additions and 27 deletions.
31 changes: 4 additions & 27 deletions sp_api/api/vendor_shipments/vendor_shipments.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:**
Expand All @@ -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:**
Expand Down Expand Up @@ -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 <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
key createdBefore:string | Get Shipment Details that became available before this timestamp will be included in the result. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
key shipmentConfirmedBefore:string | Get Shipment Details by passing Shipment confirmed create Date Before. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
key shipmentConfirmedAfter:string | Get Shipment Details by passing Shipment confirmed create Date After. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
key packageLabelCreatedBefore:string | Get Shipment Details by passing Package label create Date by buyer. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
key packageLabelCreatedAfter:string | Get Shipment Details by passing Package label create Date After by buyer. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
key shippedBefore:string | Get Shipment Details by passing Shipped Date Before. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
key shippedAfter:string | Get Shipment Details by passing Shipped Date After. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
key estimatedDeliveryBefore:string | Get Shipment Details by passing Estimated Delivery Date Before. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
key estimatedDeliveryAfter:string | Get Shipment Details by passing Estimated Delivery Date Before. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
key shipmentDeliveryBefore:string | Get Shipment Details by passing Shipment Delivery Date Before. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
key shipmentDeliveryAfter:string | Get Shipment Details by passing Shipment Delivery Date After. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
key requestedPickUpBefore:string | Get Shipment Details by passing Before Requested pickup date. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
key requestedPickUpAfter:string | Get Shipment Details by passing After Requested pickup date. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
key scheduledPickUpBefore:string | Get Shipment Details by passing Before scheduled pickup date. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
key scheduledPickUpAfter:string | Get Shipment Details by passing After Scheduled pickup date. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> 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.
Expand Down

0 comments on commit a67596d

Please sign in to comment.