GetFulfillmentIdentifierForMSKU

Description

The GetFulfillmentIdentifierForMSKU operation gets the Fulfillment Network SKU (FNSKU) for each supplied merchant item—creating one if needed. This operation is idempotent in that you can call it multiple times without any adverse effects. This operation is required whenever you need to register items for Amazon fulfillment that require labeling. This operation is necessary to register items for Amazon fulfillment in order to send them to Amazon, but doesn't mark any offer for this item as Amazon fulfilled.

A response does not imply that the item has an offer for which it can be fulfilled; only that the Amazon Fulfillment Network can track it. An inactive item can have a quantity in the fulfillment center, but will never be fulfilled.

Use this operation instead of GetFulfillmentIdentifier if an offer already exists for the SKU.

[Note]Note

Amazon FWS returns an error if you provide more than 250 Merchant Items.

Request Parameters

NameDescriptionRequired

MerchantSKU

The merchant stock keeping unit (SKU) is the unique product identifier you assign for each product in your inventory. The SKU must be distinct from any other product you list.

Type: String

Default: None

Yes

Response Elements

NameDescription

FulfillmentItem

Properties and identifiers for an item that can be fulfilled by Amazon.

Type: FulfillmentItem

Examples

Example SOAP Request

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <soapenv:Header>
        <aws:AWSAccessKeyId
            soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
            soapenv:mustUnderstand="0"
            xmlns:aws="http://security.amazonaws.com/doc/2007-01-01/"
            >1QZHP81N5R44N89PWYR2</aws:AWSAccessKeyId>
        <aws:Signature
            soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
            soapenv:mustUnderstand="0"
            xmlns:aws="http://security.amazonaws.com/doc/2007-01-01/"
            >1HArosieRrNzcHZaM14Ps0olGzA=</aws:Signature>
        <aws:Timestamp
            soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next"
            soapenv:mustUnderstand="0"
            xmlns:aws="http://security.amazonaws.com/doc/2007-01-01/"
            >2009-02-21T02:40:21Z</aws:Timestamp>
    </soapenv:Header>
    <soapenv:Body>
        <GetFulfillmentIdentifierForMSKU
            xmlns="http://fba-inbound.amazonaws.com/doc/2007-05-10/">
            <MerchantSKU>ssof_dev_drt_afn_item</MerchantSKU>
        </GetFulfillmentIdentifierForMSKU>
    </soapenv:Body>
</soapenv:Envelope>

Example Query Request

https://fba-inbound.amazonaws.com/
?Action=GetFulfillmentIdentifierforMSKU
&Version=2007-05-10
&AWSAccessKeyId=1QZHP81N5R44N89PWYR2
&Signature=1HArosieRrNzcHZaM14Ps0olGzA=
&Timestamp=2009-02-21T02:40:21Z
&MerchantSKU=ssof_dev_drt_afn_item

Example Response

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Body>
        <ns1:GetFulfillmentIdentifierForMSKUResponse
            xmlns:ns1="http://fba-inbound.amazonaws.com/doc/2007-05-10/">
            <ns1:GetFulfillmentIdentifierForMSKUResult>
                <ns1:FulfillmentItem>
                    <ns1:ASIN>B00009M6UX</ns1:ASIN>
                    <ns1:Condition>NewItem</ns1:Condition>
                    <ns1:MerchantSKU>ssof_dev_drt_afn_item</ns1:MerchantSKU>
                    <ns1:FulfillmentNetworkSKU>X00002GBED</ns1:FulfillmentNetworkSKU>
                    <ns1:IsActive>true</ns1:IsActive>
                </ns1:FulfillmentItem>
            </ns1:GetFulfillmentIdentifierForMSKUResult>
            <ns1:ResponseMetadata>
                <ns1:RequestId>52549b75-ed34-4006-b1a7-79ed2611f87f</ns1:RequestId>
            </ns1:ResponseMetadata>
        </ns1:GetFulfillmentIdentifierForMSKUResponse>
    </soapenv:Body>
</soapenv:Envelope>

Related Operations

GetFulfillmentIdentifier