send("/products/fees/v0/listings/{$sellerSKU}/feesEstimate", [ 'method' => 'POST', 'json' => $body ]); } public function getMyFeesEstimateForSKUAsync($sellerSKU, $body = []) { return $this->sendAsync("/products/fees/v0/listings/{$sellerSKU}/feesEstimate", [ 'method' => 'POST', 'json' => $body ]); } /** * Operation getMyFeesEstimateForASIN * * @param string $asin The Amazon Standard Identification Number (ASIN) of the item. * */ public function getMyFeesEstimateForASIN($asin, $body = []) { return $this->send("/products/fees/v0/items/{$asin}/feesEstimate", [ 'method' => 'POST', 'json' => $body ]); } public function getMyFeesEstimateForASINAsync($asin, $body = []) { return $this->sendAsync("/products/fees/v0/items/{$asin}/feesEstimate", [ 'method' => 'POST', 'json' => $body ]); } /** * Operation getMyFeesEstimates * */ public function getMyFeesEstimates($body = []) { return $this->send("/products/fees/v0/feesEstimate", [ 'method' => 'POST', 'json' => $body ]); } public function getMyFeesEstimatesAsync($body = []) { return $this->sendAsync("/products/fees/v0/feesEstimate", [ 'method' => 'POST', 'json' => $body ]); } }