The Selling Partner API for Amazon Warehousing and Distribution
- API version: 2024-05-09
- Build date: 2025-06-25T16:01:36.172+08:00
The Selling Partner API for Amazon Warehousing and Distribution (AWD) provides programmatic access to information about AWD shipments and inventory.
For more information, please visit https://sellercentral.amazon.com/gp/mws/contactus.html
Automatically generated by the Swagger Codegen
Building the API client library requires:
- Java 1.7+
- Maven/Gradle
To install the API client library to your local Maven repository, simply execute:
mvn clean installTo deploy it to a remote Maven repository instead, configure the settings of the repository and execute:
mvn clean deployRefer to the OSSRH Guide for more information.
Add this dependency to your project's POM:
<dependency>
<groupId>io.swagger</groupId>
<artifactId>data-awd-api_2024-05-09</artifactId>
<version>3.0</version>
<scope>compile</scope>
</dependency>Add this dependency to your project's build file:
compile "io.swagger:data-awd-api_2024-05-09:3.0"At first generate the JAR by executing:
mvn clean packageThen manually install the following JARs:
target/data-awd-api_2024-05-09-3.0.jartarget/lib/*.jar
Please follow the installation instruction and execute the following Java code:
import io.swagger.client.awd.*;
import io.swagger.client.awd.auth.*;
import io.swagger.client.awd.model.*;
import io.swagger.client.awd.api.AwdApi;
import java.io.File;
import java.util.*;
public class AwdApiExample {
public static void main(String[] args) {
AwdApi apiInstance = new AwdApi();
String orderId = "orderId_example"; // String | The ID of the inbound order you want to cancel.
try {
apiInstance.cancelInbound(orderId);
} catch (ApiException e) {
System.err.println("Exception when calling AwdApi#cancelInbound");
e.printStackTrace();
}
}
}All URIs are relative to https://sellingpartnerapi-na.amazon.com
| Class | Method | HTTP request | Description |
|---|---|---|---|
| AwdApi | cancelInbound | POST /awd/2024-05-09/inboundOrders/{orderId}/cancellation | |
| AwdApi | checkInboundEligibility | POST /awd/2024-05-09/inboundEligibility | |
| AwdApi | confirmInbound | POST /awd/2024-05-09/inboundOrders/{orderId}/confirmation | |
| AwdApi | createInbound | POST /awd/2024-05-09/inboundOrders | |
| AwdApi | getInbound | GET /awd/2024-05-09/inboundOrders/{orderId} | |
| AwdApi | getInboundShipment | GET /awd/2024-05-09/inboundShipments/{shipmentId} | |
| AwdApi | getInboundShipmentLabels | GET /awd/2024-05-09/inboundShipments/{shipmentId}/labels | |
| AwdApi | listInboundShipments | GET /awd/2024-05-09/inboundShipments | |
| AwdApi | listInventory | GET /awd/2024-05-09/inventory | |
| AwdApi | updateInbound | PUT /awd/2024-05-09/inboundOrders/{orderId} | |
| AwdApi | updateInboundShipmentTransportDetails | PUT /awd/2024-05-09/inboundShipments/{shipmentId}/transport |
- Address
- CarrierCode
- CarrierCodeType
- DestinationDetails
- DimensionUnitOfMeasurement
- DistributionPackage
- DistributionPackageContents
- DistributionPackageQuantity
- DistributionPackageType
- Error
- ErrorList
- ExpirationDetails
- InboundEligibility
- InboundEligibilityStatus
- InboundOrder
- InboundOrderCreationData
- InboundOrderReference
- InboundPackages
- InboundPreferences
- InboundShipment
- InboundShipmentStatus
- InboundShipmentSummary
- InboundStatus
- InventoryDetails
- InventoryListing
- InventoryQuantity
- InventorySummary
- InventoryUnitOfMeasurement
- LabelOwner
- LabelStatus
- MeasurementData
- OrderIneligibilityReason
- PackageDimensions
- PackageVolume
- PackageWeight
- PrepCategory
- PrepDetails
- PrepInstruction
- PrepOwner
- ProductAttribute
- ProductQuantity
- ShipmentLabels
- ShipmentListing
- SkuEligibility
- SkuIneligibilityReason
- SkuQuantity
- TrackingDetails
- TransportationDetails
- VolumeUnitOfMeasurement
- WeightUnitOfMeasurement
All endpoints do not require authorization. Authentication schemes defined for the API:
It's recommended to create an instance of ApiClient per thread in a multithreaded environment to avoid any potential issues.