"Access to requested resource is denied" message for Finances #203
-
Hi, I wrote a code using python as follows: response = Orders(marketplace=Marketplaces.JP,credentials=credentials).get_orders(CreatedAfter=(datetime.now() - timedelta(days=5)).isoformat()) This code works fine, but the code response = Finances(marketplace=Marketplaces.JP,credentials=credentials).list_financial_events(PostedAfter=(datetime.now() - timedelta(days=5)).isoformat()) returns response with "[{'message': 'Access to requested resource is denied.', 'code': 'Unauthorized', 'details': ''}]". Why does this happen? The method Finances requires different credentials than the method Orders? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
I'm facing the same.. just the orders.get_orders runs... i'm trying to list my catalog products.. and get the same response... |
Beta Was this translation helpful? Give feedback.
-
Your app in sellercentral needs permission to access the endpoint. |
Beta Was this translation helpful? Give feedback.
Your app in sellercentral needs permission to access the endpoint.