sabrakadabra
sabrakadabra

Reputation: 67

How to get invoice data from Amazon SP-API for FBA orders regularly?

Amazon requires sellers to upload invoices within 24 hours.

GET_ORDER_REPORT_DATA_INVOICING can be scheduled to get data but only for MFN orders. What's about AFN / FBA orders? GET_AMAZON_FULFILLED_SHIPMENTS_DATA_INVOICING can not be scheduled. Sounds strange for me. What is the right approach to get invoice data from new FBA orders regulary e.g. all 4 hours?

Upvotes: 0

Views: 471

Answers (1)

Anse
Anse

Reputation: 1658

You need to request and then download a GET_AMAZON_FULFILLED_SHIPMENTS_DATA_INVOICING report per your own crontab. That's at least what we do. This report type cannot be scheduled on Amazon, so you really need to request it each time.

My PHP based cron jobs request that report every 6 hours, using the ReportsV20210630Api implementation from Jesse Evers.

Upvotes: 0

Related Questions