场景说明: 商家在接收到的海量订单中,会有一部分订单需要特殊关注或增加备注说明,还有一部分订单可能会因为商家自己给的一些优惠需要改价,本场景说明如何对这类订单信息进行备注和信息修改。
——如何给需要关注的订单增加备注信息?微商城后台-订单-所有订单,找到对应订单后,点击“备注”即可添加订单备注信息; ——备注添加完成后,在订单的下方会显示备注信息; ——通过哪个接口可以给对应的订单添加备注并注明备注星级? (1)增加/修改订单备注:youzan.trade.memo.update (3)重要字段说明: 》》flag:订单备注加星标,取值1-5,星标越多标明越重要; 》》memo:订单备注,传入订单备注内容,有违禁词限制; (4)调用格式,通过(2)中链接访问后: (5)HTTP调用示例: (6)JAVA调用示例: YZClient client = new DefaultYZClient(newToken("token")); //new Sign(appKey, appSecret) YouzanTradeMemoUpdateParams youzanTradeMemoUpdateParams =new YouzanTradeMemoUpdateParams(); youzanTradeMemoUpdateParams.setTid("E20181023141952028500008"); youzanTradeMemoUpdateParams.setMemo("优惠订单,请运营人员及时改价~"); YouzanTradeMemoUpdate youzanTradeMemoUpdate = newYouzanTradeMemoUpdate(); youzanTradeMemoUpdate.setAPIParams(youzanTradeMemoUpdateParams); YouzanTradeMemoUpdateResult result =client.invoke(youzanTradeMemoUpdate); ——商家提供了特殊的优惠,买家下单后,在支付之前需要商家改价,该如何操作?微商城后台-订单-订单管理,找到买家未支付的订单后可以进行订单改价;
——通过哪个接口可以修改指定订单的价格? (1)订单改价:youzan.trade.price.update (3)重要字段说明: 》》is_allow_preference:改价后是否允许买家再使用其他优惠,0表示不允许,1表示允许;比如传入0,则买家无法再享受优惠券、会员折扣等优惠; 》》post_fee:邮费价格,单位元; 》》price_change:价格增减,单位元;如果是涨价,传入正数,如果是减价,传入负数; (4)调用格式,通过(2)中链接访问后: (5)HTTP调用示例: (6)JAVA调用示例: YZClient client = new DefaultYZClient(newToken("token")); //new Sign(appKey, appSecret) YouzanTradePriceUpdateParams youzanTradePriceUpdateParams =new YouzanTradePriceUpdateParams(); youzanTradePriceUpdateParams.setIsAllowPreference(1L); youzanTradePriceUpdateParams.setPostFee("10"); youzanTradePriceUpdateParams.setPriceChange("-0.03"); youzanTradePriceUpdateParams.setTid("E20181023210034069700016"); YouzanTradePriceUpdate youzanTradePriceUpdate = newYouzanTradePriceUpdate(); youzanTradePriceUpdate.setAPIParams(youzanTradePriceUpdateParams); YouzanTradePriceUpdateResult result =client.invoke(youzanTradePriceUpdate);
总帖 > 【正向交易接口】五大场景接口对接说明
|