Replies: 1 comment
-
|
Hi! Region EU, I got this response: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have been trying to retrieve Inventory health and planning report for US and CA, but the payload contains nothing.
from sp_api.base import SellingApiException, Marketplaces
from sp_api.api import Orders,Reports
import json
import pandas as pd
import os
os.environ['REQUESTS_CA_BUNDLE']='ca-certificates.crt'
os.environ['NO_PROXY']='.amazon.com'
report_types = ['GET_VENDOR_INVENTORY_HEALTH_AND_PLANNING_REPORT']
processing_status = ["DONE"]
res2 = Reports(credentials=credentials, marketplace=Marketplaces.US).get_reports(reportTypes=report_types,processingStatuses=processing_status)
report=res2.payload['reports']
print(report)
[]
Beta Was this translation helpful? Give feedback.
All reactions