mws
v2.0.11
Published
📦 A fully typed TypeScript and Node.js SDK library for Amazon MWS API
Downloads
6,194
Readme
Amazon MWS API for Node.js
📦 mws
A fully typed TypeScript and Node.js SDK library for Amazon MWS API
Download & Installation
npm i -s mws
Click here for the full Documentation
Example
import {
amazonMarketplaces,
HttpClient,
Sellers,
Orders,
MWS
} from 'mws'
const mwsOptions = {
marketplace: amazonMarketplaces.US,
awsAccessKeyId: '',
mwsAuthToken: '',
sellerId: '',
secretKey: '',
}
// Using sections directly
const main = async () => {
const http = new HttpClient(mwsOptions)
/**
* Get status for Sellers API
*/
const sellers = new Sellers(http)
const [serviceStatus] = await sellers.getServiceStatus()
if (serviceStatus.Status === 'GREEN') {
console.log(`Sellers API is up on ${serviceStatus.Timestamp}!`)
}
/**
* List Orders
*/
const orders = new Orders(http)
// or
const [ordersList, requestMeta] = await orders.listOrders({
MarketplaceId: [amazonMarketplaces.US.id],
CreatedAfter: new Date(Date.now() - 100 * 24 * 60 * 60 * 1000)
})
ordersList.Orders.forEach((order) => {
console.log(`Order ID is ${order.AmazonOrderId}`)
})
}
// Using MWS client
const main = async () => {
const http = new HttpClient(mwsOptions)
const mws = new MWS(http)
/**
* Get status for Sellers API
*/
const [serviceStatus] = await mws.sellers.getServiceStatus()
if (serviceStatus.Status === 'GREEN') {
console.log(`Sellers API is up on ${serviceStatus.Timestamp}!`)
}
/**
* List Orders
*/
const [ordersList, requestMeta] = await mws.orders.listOrders({
MarketplaceId: [amazonMarketplaces.US.id],
CreatedAfter: new Date(Date.now() - 100 * 24 * 60 * 60 * 1000)
})
ordersList.Orders.forEach((order) => {
console.log(`Order ID is ${order.AmazonOrderId}`)
})
}
More examples in the /examples
folder!
Contributing
Authors or Acknowledgments
- Roman Filippov (Scale Leap)
- Stanislav Iliev (gigobyte)
- Justin Emmanuel Mercado (Justin Emmanuel Mercado)
License
This project is licensed under the MIT License.