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

UpdateScheduledPackages

Description

The UpdateScheduledPackages operation updates the pickup slot of an existing scheduled package. Pass in the ScheduledPackageId value for the scheduled package that the seller wants to change, along with a new SlotId value for the desired scheduled pickup slot. Get the new SlotId value from a previous call to the ListPickupSlots operation.

Availability

This operation is available only in the India marketplace.

Throttling

Maximum request quota Restore rate
10 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
ScheduledPackageUpdateDetailsList The scheduled packages to be updated. Yes List of ScheduledPackageUpdateDetails
Note: Currently you can specify only one ScheduledPackageUpdateDetails element.

Response elements

Name Description
ScheduledPackageList

List of Package

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=UpdateScheduledPackages
  &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
  &MarketplaceId=A21TJRUUN4KGV
  &ScheduledPackageUpdateDetailsList.PackageUpdateDetails.1.ScheduledPackageId.AmazonOrderId=903-1713775-3598252
  &ScheduledPackageUpdateDetailsList.PackageUpdateDetails.1.ScheduledPackageId.PackageId=1ab0f06a-9149-87e0-aba9-7098117872d6
  &ScheduledPackageUpdateDetailsList.PackageUpdateDetails.1.PackagePickupSlot.SlotId=Xyt123bbdg=
  &ScheduledPackageUpdateDetailsList.PackageUpdateDetails.1.PackagePickupSlot.PickupTimeStart=2018-09-05T16%3A12%3A21
  &ScheduledPackageUpdateDetailsList.PackageUpdateDetails.1.PackagePickupSlot.PickupTimeEnd=2018-09-05T18%3A12%3A21

↑ Top

Example response

For information about standard response formatting, see Response format.

Show example code Hide example code

<?xml version="1.0"?>
<UpdateScheduledPackagesResponse xmlns="http://mws.amazonaws.in/Scheduling/2018-09-01">
    <UpdateScheduledPackagesResult>
        <ScheduledPackageList>
            <Package>
                <ScheduledPackageId>
                    <AmazonOrderId>903-1713775-3598252</AmazonOrderId>
                    <PackageId>1ab0f06a-9149-87e0-aba9-7098117872d6</PackageId>
                </ScheduledPackageId>
                <PackageDimensions>
                    <Length>12.00</Length>
                    <Width>12.00</Width>
                    <Height>12.00</Height>
                    <Unit>cm</Unit>
                </PackageDimensions>
                <PackageWeight>
                    <Unit>g</Unit>
                    <Value>23.00</Value>
                </PackageWeight>
                <PackagePickupSlot>
                    <SlotId>Xyt123bbdg=</SlotId>
                    <PickupTimeStart>2018-11-05T14:00:00.50+05:30</PickupTimeStart>
                    <PickupTimeEnd>2018-11-05T16:00:00.50+05:30</PickupTimeEnd>
                </PackagePickupSlot>
                <PackageStatus>Scheduled</PackageStatus>
            </Package>
        </ScheduledPackageList>
    </UpdateScheduledPackagesResult>
    <ResponseMetadata>
        <RequestId>adb18f0d-2076-48d4-99ef-fb4b9f892a4e</RequestId>
    </ResponseMetadata>
</UpdateScheduledPackagesResponse>

↑ Top