The getInventorySummaries function cannot work if the SKU contains ",":
API: /fba/inventory/v1/summaries
granularityType=Marketplace
granularityId=NOT_IMPORTANT
marketplaceIds=A3KFBWWTZ2P8CN -->ANY MARKETPLACE
sellerSkus=abc,d
Note the 'abc,d' is an SKU
URL of the content on GitHub
https://developer-docs.amazon.com/sp-api/docs/fbainventory-api-v1-reference
Because the sellerSkus is a list of values, separated by a comma. But the SKU itself has a comma that causes a problem
How to solve this?
The getInventorySummaries function cannot work if the SKU contains ",":
API: /fba/inventory/v1/summaries
granularityType=Marketplace
granularityId=NOT_IMPORTANT
marketplaceIds=A3KFBWWTZ2P8CN -->ANY MARKETPLACE
sellerSkus=abc,d
Note the 'abc,d' is an SKU
URL of the content on GitHub
https://developer-docs.amazon.com/sp-api/docs/fbainventory-api-v1-reference
Because the sellerSkus is a list of values, separated by a comma. But the SKU itself has a comma that causes a problem
How to solve this?