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

CancelFulfillmentOrder

Requests that Amazon stop attempting to fulfill an existing fulfillment order.

Description

The CancelFulfillmentOrder operation requests that Amazon stop attempting to ship the items in an existing fulfillment order. Amazon attempts to stop shipment of items that have not already shipped, but cannot guarantee success.

You can check the extent to which the cancellation of your fulfillment order succeeded by submitting the GetFulfillmentOrder operation. Submit the same SellerFulfillmentOrderId that you submitted with the CancelFulfillmentOrder operation. The GetFulfillmentOrder operation returns the cancelled quantity for each item in the fulfillment order.

Note: You cannot cancel a fulfillment order with a status of Processing, Complete, or CompletePartialled.

Availability

This operation is available in all marketplaces except Brazil.

Throttling

The CancelFulfillmentOrder operation has a maximum request quota of 30 and a restore rate of two requests every second. 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

Name Description Required Values
SellerFulfillmentOrderId The fulfillment order identifier that you created and submitted using the CreateFulfillmentOrder operation. Yes Maximum: 40 characters

Type: xs:string

Response elements

This operation only returns the standard response elements.

Examples

Example query request

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

Show example code Hide example code

http://mws.amazonaws.com/FulfillmentOutboundShipment/2010-10-01/
  ?Action=CancelFulfillmentOrder
  &Version=2010-10-01
  &AWSAccessKeyId=AKIAJGUEXAMPLEE2NVUA
  &MWSAuthToken=amzn.mws.4ea38b7b-f563-7709-4bae-87aeaEXAMPLE
  &SignatureVersion=2
  &SignatureMethod=HmacSHA256
  &Signature=ZRA9DR5rveSuz%2F1D18AHvoipg2BAev8yblPQ1BbEbfU%3D
  &Timestamp=2010-10-01T02:40:36Z
  &SellerId=A2NKEXAMPLEF53
  &SellerFulfillmentOrderId=six-test-order

↑ Top

Example response

For information about standard response formatting, see Response format.

Show example code Hide example code

<?xml version="1.0"?>
<CancelFulfillmentOrderResponse xmlns="http://mws.amazonaws.com/FulfillmentOutboundShipment/2010-10-01/">
    <ResponseMetadata>
        <RequestId>d95be26c-16cf-4bbc-ab58-dce89fd4ac53</RequestId>
    </ResponseMetadata>
</CancelFulfillmentOrderResponse>

↑ Top