Actions18
- Finance Actions
- Analytics Actions
- Orders Actions
- Invoices Actions
- Shipments Actions
- Listings Actions
- Prices Actions
Overview
This node interacts with the Amazon Selling Partner API to update the status of shipments for orders on Amazon marketplaces. It is useful for sellers who need to programmatically update shipment statuses such as 'Ready For Pickup', 'Picked Up', 'At Destination', or 'Delivered' for their orders across various Amazon marketplaces. For example, a seller can automate the process of marking an order as 'Delivered' once the shipment reaches the customer, improving order tracking and customer communication.
Use Case Examples
- Updating the shipment status of an order to 'Delivered' on Amazon.com (US) marketplace.
- Marking a shipment as 'Picked Up' for an order on Amazon.co.uk (UK) marketplace.
Properties
| Name | Meaning |
|---|---|
| Order ID | The Amazon-defined order identifier in 3-7-7 format, used to specify which order's shipment status to update. |
| Marketplace ID | The Amazon marketplace where the shipment operation is performed, such as Amazon.com (US), Amazon.co.uk (UK), etc. |
| Status | The new status to set for the shipment, indicating its current stage such as 'Ready For Pickup', 'Picked Up', 'At Destination', or 'Delivered'. |
Output
JSON
orderId- The Amazon-defined order identifier for which the shipment status was updated.marketplaceId- The Amazon marketplace identifier where the shipment status update was applied.status- The updated status of the shipment.updateTimestamp- Timestamp indicating when the shipment status was updated.
Dependencies
- Amazon Selling Partner API
- API authentication token or credentials for Amazon SP-API
Troubleshooting
- Ensure the Order ID is in the correct 3-7-7 format as required by Amazon.
- Verify that the Marketplace ID corresponds to the correct Amazon marketplace for the order.
- Check that the API credentials have the necessary permissions to update shipment statuses.
- Common errors may include invalid order ID format, unauthorized API access, or network connectivity issues. Resolving these involves validating input parameters, refreshing API credentials, and ensuring stable internet connection.
Links
- Amazon Selling Partner API - Shipping API Reference - Official documentation for the Amazon SP-API Shipping endpoints, including shipment status updates.