2019年2月、フルフィルメントby Amazon(FBA)の手数料改定が順次予定されております。
商品APIセクションのGetMyFeesEstimateオペレーションにて見積もり額を取得可能な「配送代行手数料」につきましても、2月21日出荷分より新しい料金体系が適用されます。
GetMyFeesEstimateオペレーションが返す配送代行手数料の見積もり額は、2月21日以降に送信されるリクエスト分より、新しい料金体系が適用される予定です。
GetMyFeesEstimateオペレーションで返却されるFeeTypeが表す手数料に変更はなく、配送代行手数料は引き続きFBAPickAndPackとして返却されます。FeeTypeが表す手数料は以下となります。
ReferralFee | 販売手数料 |
VariableClosingFee | カテゴリー成約料 |
PerItemFee | 基本成約料 |
FBAFees | フルフィルメント by Amazon 手数料の合計 |
FBAPickAndPack | 配送代行手数料 |
FBAWeightHandling | 使用しない(常に0) |
レスポンスのサンプル
<?xml version="1.0"?>
<GetMyFeesEstimateResponse xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01">
<GetMyFeesEstimateResult>
<FeesEstimateResultList>
<FeesEstimateResult>
<Status>Success</Status>
<FeesEstimateIdentifier>
<MarketplaceId>A1VC38T7YXB528</MarketplaceId>
<SellerId>>**************</SellerId>
<IdType>ASIN</IdType>
<IdValue>**********</IdValue>
<IsAmazonFulfilled>true</IsAmazonFulfilled>
<PriceToEstimateFees>
<ListingPrice>
<CurrencyCode>JPY</CurrencyCode>
<Amount>5000</Amount>
</ListingPrice>
<Shipping>
<CurrencyCode>JPY</CurrencyCode>
<Amount>0</Amount>
</Shipping>
<Points>
<PointsNumber>0</PointsNumber>
</Points>
</PriceToEstimateFees>
<SellerInputIdentifier>FEE20180428AAA</SellerInputIdentifier>
</FeesEstimateIdentifier>
<FeesEstimate>
<TimeOfFeesEstimation>2018-04-28T05:58:52.781Z</TimeOfFeesEstimation>
<TotalFeesEstimate> <!-- 見積もり手数料の合計 -->
<CurrencyCode>JPY</CurrencyCode>
<Amount>866.00</Amount>
</TotalFeesEstimate>
<FeeDetailList>
<FeeDetail>
<FeeType>ReferralFee</FeeType> <!-- 販売手数料 -->
<FeeAmount>
<CurrencyCode>JPY</CurrencyCode>
<Amount>500.00</Amount>
</FeeAmount>
<FeePromotion> <!-- 販売手数料のプロモーション金額 -->
<CurrencyCode>JPY</CurrencyCode>
<Amount>0.00</Amount>
</FeePromotion>
<FinalFee> <!—販売手数料の最終金額 -->
<CurrencyCode>JPY</CurrencyCode>
<Amount>500.00</Amount>
</FinalFee>
</FeeDetail>
<FeeDetail>
<FeeType>VariableClosingFee</FeeType> <!-- カテゴリー成約料 -->
<FeeAmount>
<CurrencyCode>JPY</CurrencyCode>
<Amount>0.00</Amount>
</FeeAmount>
<FeePromotion>
<CurrencyCode>JPY</CurrencyCode>
<Amount>0.00</Amount>
</FeePromotion>
<FinalFee>
<CurrencyCode>JPY</CurrencyCode>
<Amount>0.00</Amount>
</FinalFee>
</FeeDetail>
<FeeDetail>
<FeeType>PerItemFee</FeeType> <!-- 基本成約料 -->
<FeeAmount>
<CurrencyCode>JPY</CurrencyCode>
<Amount>0.00</Amount>
</FeeAmount>
<FeePromotion>
<CurrencyCode>JPY</CurrencyCode>
<Amount>0.00</Amount>
</FeePromotion>
<FinalFee>
<CurrencyCode>JPY</CurrencyCode>
<Amount>0.00</Amount>
</FinalFee>
</FeeDetail>
<FeeDetail>
<FeeType>FBAFees</FeeType> <!-- FBA手数料の合計 -->
<FeeAmount>
<CurrencyCode>JPY</CurrencyCode>
<Amount>366.00</Amount>
</FeeAmount>
<FeePromotion>
<CurrencyCode>JPY</CurrencyCode>
<Amount>0.00</Amount>
</FeePromotion>
<FinalFee>
<CurrencyCode>JPY</CurrencyCode>
<Amount>366.00</Amount>
</FinalFee>
<IncludedFeeDetailList>
<FeeDetail>
<FeeType>FBAWeightHandling</FeeType> <!-- 不使用 (常時0) -->
<FeeAmount>
<CurrencyCode>JPY</CurrencyCode>
<Amount>0.00</Amount>
</FeeAmount>
<FeePromotion>
<CurrencyCode>JPY</CurrencyCode>
<Amount>0.00</Amount>
</FeePromotion>
<FinalFee>
<CurrencyCode>JPY</CurrencyCode>
<Amount>0.00</Amount>
</FinalFee>
</FeeDetail>
<FeeDetail>
<FeeType>FBAPickAndPack</FeeType> <!-- 配送代行手数料 -->
<FeeAmount>
<CurrencyCode>JPY</CurrencyCode>
<Amount>366.00</Amount>
</FeeAmount>
<FeePromotion>
<CurrencyCode>JPY</CurrencyCode>
<Amount>0.00</Amount>
</FeePromotion>
<FinalFee>
<CurrencyCode>JPY</CurrencyCode>
<Amount>366.00</Amount>
</FinalFee>
</FeeDetail>
</IncludedFeeDetailList>
</FeeDetail>
</FeeDetailList>
</FeesEstimate>
</FeesEstimateResult>
</FeesEstimateResultList>
</GetMyFeesEstimateResult>
<ResponseMetadata>
<RequestId>12abcdef-1234-5678-abcd-abcdefgh1234</RequestId>
</ResponseMetadata>
</GetMyFeesEstimateResponse>
GetMyFeesEstimateオペレーションについて詳しくは以下もご参照ください。
- ブログ(2017/01/30投稿): Amazon MWS での手数料見積り額の取得について
- APIリファレンス: GetMyFeesEstimate
FBAの料金体系の変更及び手数料の改定については以下のヘルプをご参照ください。
以上、開発の参考にして頂けますと幸いです。