Replies: 4 comments 6 replies
-
I can’t reproduce the error without knowing your code.
On 11 Apr 2021, 16:04 +0200, Patrick Gerrits ***@***.***>, wrote:
I have created a .tsv file (flat file) When uploading that file, manually on sellercentral.amazon.com everything works out fine and the file is processed.
When sending the same file using submit_feed() it errors with:
Feed Processing Summary:
Number of records processed 0
Number of records successful 0
original-record-number sku error-code error-type error-message
0 90011 Fatal The file's column headings are missing or invalid. To correct this error, download the template again and use that new copy, or insert the correct column headings as row two of your existing file.
File used:
sku product-id product-id-type price minimum-seller-allowed-price maximum-seller-allowed-price item-condition quantity add-delete will-ship-internationally expedited-shipping standard-plus item-note fulfillment-center-id 0889698521550 889698521550 4 40.95 40.95 40.95 11 0 a 4 N Y
File is tab separated and utf8 encoded.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
Beta Was this translation helpful? Give feedback.
-
Same result:
And also Same result:
|
Beta Was this translation helpful? Give feedback.
-
Hello, unfortunately I have the same issue and couldn't figure out how to solve this myself. I tried to use the inventory loader as well as the listings loader flat file (see below code for one example product, which I wanted to use for testing). Unfortunately both result in the same error, shown in the initial post. `csv_buffer = StringIO() csv_writer.writerow(['TemplateType=Offer','Version=2020.000']) csv_writer.writerow([ buf = BytesIO() res = Feeds(credentials=credentials, marketplace=Marketplaces.DE).submit_feed('POST_FLAT_FILE_LISTINGS_DATA',buf)` Thanks in advance! |
Beta Was this translation helpful? Give feedback.
-
HI @shintaii @GuyTuval @McDennis1 @saleweaver I am trying to create a feed document and create a feed for POST_FLAT_FILE_PRICEANDQUANTITYONLY_UPDATE_DATA (Price and Quantity update)
I am getting successful responses for create_feed_document, and create_feed. But then when I see the created feed I see the below response ---
I see you guys faced a similar issue but for different file submission, can u guys help me with this Thanks.., |
Beta Was this translation helpful? Give feedback.
-
I have created a .tsv file (flat file) When uploading that file, manually on sellercentral.amazon.com everything works out fine and the file is processed.
When sending the same file using
submit_feed()
it errors with:File used:
sku product-id product-id-type price minimum-seller-allowed-price maximum-seller-allowed-price item-condition quantity add-delete will-ship-internationally expedited-shipping standard-plus item-note fulfillment-center-id 0889698521550 889698521550 4 40.95 40.95 40.95 11 0 a 4 N Y
File is tab separated and utf8 encoded.
Beta Was this translation helpful? Give feedback.
All reactions