0

SP API reportType GET_FLAT_FILE_OPEN_LISTINGS_DATA 返回数量值为空

let report_document = await sellingPartner.callAPI({
    operation:'getReportDocument',
    endpoint:'reports',
    path:{
       reportDocumentId: reportDocumentID 
    }
});

let report = await sellingPartner.download(report_document,{json:true});

响应包含 sku、ASIN、价格值。但是可用库存的数量显示为空,而缺货商品的数量显示为 0。

    {
  sku: '202050',
  asin: 'B071HT7TZ9',
  price: '12508.00',
  quantity: '',
  'Business Price': '',
  'Quantity Price Type': '',
  'Quantity Lower Bound 1': '',
  'Quantity Price 1': '',
  'Quantity Lower Bound 2': '',
  'Quantity Price 2': '',
  'Quantity Lower Bound 3': '',
  'Quantity Price 3': '',
  'Quantity Lower Bound 4': '',
  'Quantity Price 4': '',
  'Quantity Lower Bound 5': '',
  'Quantity Price 5': '',
  'Progressive Price Type': '',
  'Progressive Lower Bound 1': '',
  'Progressive Price 1': '',
  'Progressive Lower Bound 2': '',
  'Progressive Price 2': '',
  'Progressive Lower Bound 3': '',
  'Progressive Price 3': ''
}

我经过交叉验证,该 ASIN 的可用数量为 2。我错过了一些东西来获得数量吗?

4

0 回答 0