alibaba.idle.game.boost.delay.apply (卖家申请延长服务完成时间)

卖家申请延长服务完成时间

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
delay_apply_top_request DelayApplyTopRequest 可选 请求结构体
  • └ order_id
  • Number
  • 必须
  • 1234567890
  • 订单ID
  • └ description
  • String
  • 可选
  • 买家协商延迟发货
  • 延长服务完成时间的申请原因
  • └ apply_time
  • String
  • 必须
  • 2023-10-01 12:00:00
  • 申请时间,格式为yyyy-MM-dd HH:mm:ss
  • └ user_id
  • Number
  • 必须
  • 1323324
  • 用户ID

响应参数

名称 类型 示例值 描述
result Result result
  • └ success
  • Boolean
  • true
  • success
  • └ data
  • Boolean
  • true
  • data
  • └ code
  • String
  • 200
  • errorCode
  • └ message
  • String
  • OK
  • errorMsg

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaIdleGameBoostDelayApplyRequest req = new AlibabaIdleGameBoostDelayApplyRequest();
AlibabaIdleGameBoostDelayApplyRequest.DelayApplyTopRequest obj1 = new AlibabaIdleGameBoostDelayApplyRequest.DelayApplyTopRequest();
obj1.setOrderId(1234567890L);
obj1.setDescription("买家协商延迟发货");
obj1.setApplyTime("2023-10-01 12:00:00");
obj1.setUserId(1323324L);
req.setDelayApplyTopRequest(obj1);
AlibabaIdleGameBoostDelayApplyResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_idle_game_boost_delay_apply_response>
    <result>
        <success>true</success>
        <data>true</data>
        <code>200</code>
        <message>OK</message>
    </result>
</alibaba_idle_game_boost_delay_apply_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

返回
顶部