如何从Magento2到rest api获得所有税率?

时间:2017-08-18 05:27:13

标签: php rest magento-2.0

我想从magento2取得所有税率,我试过了 http://magento2url/rest/default/V1/taxRates/2“,这里给出了特定身份证的税率信息,但我想要所有人。

我尝试了以下网址: http://magento2url/index.php/rest/V1/taxRates?searchCriteria[currentPage]

这里的回复是:

stdClass对象 (     [message] =>请求与任何路由都不匹配。 )

如果我提供产品,请使用相同的网址 http://magento2url/index.php/rest/V1/products?searchCriteria[currentPage]工作正常。

请建议是否有人知道答案或提出任何建议我如何在这里继续?

2 个答案:

答案 0 :(得分:1)

请尝试此结束点 的 “/ V1 / taxRates /搜索?searchCriteria”, 如果你想要特定的字段,你可以使用 的 “/ V1 / taxRates /搜索searchCriteria&安培;字段=项[tax_country_id,tax_region_id,REGION_NAME,速率]”

答案 1 :(得分:0)

按以下方式提供网址以获取所有税率

http://magentourl/index.php/rest/V1/taxRates/search?searchCriteria[currentPage]

这同样适用于客户。只需将taxRates重命名为客户即可获得当前页面的所有客户。