文档中心 > API类目 > 闲鱼电商SAAS

alibaba.idle.coin.coindeduction.store.retry (闲鱼币抵扣全店抵扣重试)

闲鱼币抵扣全店抵扣重试

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
store_deduction_retry_param StoreDeductionRetryParam 必须 全店抵扣重试参数
  • └ channel
  • String
  • 可选
  • idlePC
  • 渠道参数
  • └ item_id_list
  • Number []
  • 可选
  • 2313,23233
  • 指定重试的宝贝ID列表,为空时表示一键重试所有可重试的失败宝贝

响应参数

名称 类型 示例值 描述
suc Boolean true 是否成功
model StoreDeductionRetryResponse 全店抵扣重试响应
  • └ suc
  • Boolean
  • true
  • 操作是否成功
msg_info String - 错误信息
msg_code String - 错误码

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaIdleCoinCoindeductionStoreRetryRequest req = new AlibabaIdleCoinCoindeductionStoreRetryRequest();
AlibabaIdleCoinCoindeductionStoreRetryRequest.StoreDeductionRetryParam obj1 = new AlibabaIdleCoinCoindeductionStoreRetryRequest.StoreDeductionRetryParam();
obj1.setChannel("idlePC");
obj1.setItemIdList(new Long[] { 2313,23233 };
);
req.setStoreDeductionRetryParam(obj1);
AlibabaIdleCoinCoindeductionStoreRetryResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_idle_coin_coindeduction_store_retry_response>
    <suc>true</suc>
    <model>
        <suc>true</suc>
    </model>
    <msg_info>-</msg_info>
    <msg_code>-</msg_code>
</alibaba_idle_coin_coindeduction_store_retry_response>

异常示例

  • XML示例
  • JSON示例
<error_response>
    <code>50</code>
    <msg>Remote service error</msg>
    <sub_code>isv.invalid-parameter</sub_code>
    <sub_msg>非法参数</sub_msg>
</error_response>

错误码解释

错误码 错误描述 解决方案

API工具

如何获得此API

FAQ

返回
顶部