.. function:: submit_feed(self, feed, feed_type, marketplaceids=None,content_type="text/xml", purge='false')
Uploads a feed ( xml or .tsv ) to the seller's inventory. Can be used for creating/updating products on Amazon.
:param string feed: Takes a list or tuple
:param string feed_type: Determines the type of the feed
:param string maketplaceids: Something else
:param string content_type: Determines the type of content
:param boolean purge: Only applicabeble ifff
:returns: something from amazon
.. function:: get_feed_submission_list(self, feedids=None, max_count=None, feedtypes=None, processingstatuses=None, fromdate=None, todate=None)
Returns a list of all feed submissions submitted in the previous 90 days. That match the query parameters.
:param string feedids: This is a
:param string max_count:
:param string feedtypes:
:param string processingstatuses:
:param datetime fromdate:
:param datetime todate:
:returns: something from amazon
.. function:: get_submission_list_by_next_token(self, token)
Continuation of `get_feed_submission_list`. Returns a list of feed submissions using the next token parameter
:param string token: Token used to retrieve the next results
:returns: something from amazon
.. function:: get_feed_submission_count(self, feedtypes=None, processingstatuses=None, fromdate=None, todate=None)
Returns a count of the lists
:param string feedtypes:
:param string processingstatuses:
:param datetime fromdate:
:param datetime todate:
:returns: something from amazon
.. function:: cancel_feed_submissions(self, feedids=None, feedtypes=None, fromdate=None, todate=None)
Cancels a feed submission
:param string feedids:
:param string feedtypes:
:param datetime fromdate:
:param datetime todate:
:returns: something from amazon
.. function:: get_feed_submission_result(self, feedid)
Get feed submission results
:param string feedid:
:returns: something from amazon