Amazon Services
Amazon Marketplace Web Service (Amazon MWS) Documentation

Deprecation Notice:

Amazon Marketplace Web Service (MWS) will no longer be available after March 31, 2024. All MWS developers must migrate to Selling Partner API (SP-API) to avoid service disruptions. Refer to the Migration Hub for more information.

Amazon MWS Documentation

ListPickupSlots

Description

The ListPickupSlots operation returns time slots for Amazon Easy Ship package pickup, based on the package dimensions and package weight that the seller specifies.

Availability

This operation is available only in the India marketplace.

Throttling

Maximum request quota Restore rate
15 requests 15 requests every minute
For definitions of throttling terminology and for a complete explanation of throttling, see Throttling: Limits to how often you can submit requests in the Amazon MWS Developer Guide.

Request parameters

For more information about the request parameters that are required for all Amazon MWS operations, see Required request parameters in the Amazon MWS Developer Guide.

Name Description Required Values
MarketplaceId The marketplace that the seller is selling in. Yes Type: xs:string
AmazonOrderId An Amazon-defined order identifier. Identifies the order that the seller wants to deliver using Amazon Easy Ship. Yes Type: xs:string
PackageDimensions The package dimensions. Yes Type: Dimensions
PackageWeight The package weight. Yes Type: Weight

Response elements

Name Description
AmazonOrderId The AmazonOrderId that was passed in with the request.

Type: xs:string

PickupSlotList Type: List of PickupSlot

Examples

Example query request

For information about standard request requirements, see Required request parameters.

Show example code Hide example code

https://mws.amazonservices.in/EasyShip/2018-09-01
  ?AWSAccessKeyId=0PB842EXAMPLE7N4ZTR2
  &Action=ListPickupSlots
  &MWSAuthToken=amzn.mws.4ea38b7b-f563-7709-4bae-87aeaEXAMPLE
  &SellerId=A1XEXAMPLE5E6
  &Signature=ZQLpf8vEXAMPLE0iC265pf18n0%3D
  &SignatureVersion=2
  &SignatureMethod=HmacSHA256
  &Timestamp=2018-11-05T18%3A12%3A21
  &Version=2018-09-01
  &AmazonOrderId=903-1713775-3598252
  &MarketplaceId=A21TJRUUN4KGV
  &PackageDimensions.Length=12.00
  &PackageDimensions.Width=12.00
  &PackageDimensions.Height=12.00
  &PackageDimensions.Unit=cm
  &PackageWeight.Unit=23.00
  &PackageWeight.Value=g

↑ Top

Example response

For information about standard response formatting, see Response format.

Show example code Hide example code

<?xml version="1.0"?>
<ListPickupSlotsResponse xmlns="http://mws.amazonaws.in/EasyShip/2018-09-01">
  <ListPickupSlotsResult>
    <AmazonOrderId>903-1713775-3598252</AmazonOrderId>
    <PickupSlotList>
      <PickupSlot>
        <SlotId>Xyt123bbdg=</SlotId>
        <PickupTimeStart>2018-11-05T14:00:00.50+05:30</PickupTimeStart>
        <PickupTimeEnd>2018-11-05T16:00:00.50+05:30</PickupTimeEnd>
      </PickupSlot>
      <PickupSlot>
        <SlotId>Byvjdhsdb=</SlotId>
        <PickupTimeStart>2018-11-05T10:00:00.50+05:30</PickupTimeStart>
        <PickupTimeEnd>2018-11-05T13:59:00.50+05:30</PickupTimeEnd>
      </PickupSlot>
    </PickupSlotList>
  </ListPickupSlotsResult>
  <ResponseMetadata>
    <RequestId>adb18f0d-2076-48d4-99ef-fb4b9f892a4e</RequestId>
  </ResponseMetadata>
</ListPickupSlotsResponse>

↑ Top