Nauman Bashir
Nauman Bashir

Reputation: 119

How to update Seller Order Id with Amazon SP API

I have been trying to update Seller Order ID with SP API Feeds API. But it is getting updated on sellercentral.

Bellow is my XML Feed Document:

<AmazonEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="amzn-envelope.xsd">
<Header>
    <DocumentVersion>1.01</DocumentVersion>
    <MerchantIdentifier>123456789</MerchantIdentifier>
</Header>
<MessageType>Order</MessageType>
<PurgeAndReplace>false</PurgeAndReplace>
<Message>
    <MessageID>1</MessageID>
    <OperationType>Update</OperationType>
    <Order>
        <SellerOrderId>56789</SellerOrderId>
        <StandardOrderID>
            <Type>AmazonOrderId</Type>
            <Value>123-1234567-1234567</Value>
        </StandardOrderID>
    </Order>
</Message>

Upvotes: 2

Views: 734

Answers (1)

Nauman Bashir
Nauman Bashir

Reputation: 119

All the xml schemas can be found here.

Amazon SP API feeds

Upvotes: 1

Related Questions