alibaba.idle.game.boost.compensate.query (查询赔付单详情)

查询赔付单详情

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
order_id Number 必须 123231 订单ID
service_codes String 必须 [LOGIN,FINISH] 服务code

响应参数

名称 类型 示例值 描述
result Result result
  • └ code
  • String
  • SUCCESS
  • code
  • data
  • Data
  • data
  • └ total
  • Number
  • 1
  • total
  • items
  • Items []
  • items
  • └ order_id
  • Number
  • 2199589000001
  • orderId
  • └ apply_description
  • String
  • 买家反馈代练未按约定完成目标段位,申请赔付
  • applyDescription
  • └ apply_reason
  • String
  • 未完成赔付
  • applyReason
  • └ apply_reason_id
  • String
  • R001
  • applyReasonId
  • action_list
  • ActionList []
  • actionList
  • └ name
  • String
  • 同意赔付
  • name
  • └ trade_action
  • String
  • agreeCompensate
  • tradeAction
  • └ gmt_create
  • String
  • 2026-02-05 00:16:14
  • gmtCreate
  • └ compensate_status
  • String
  • WAIT_SELLER_AGREE
  • compensateStatus
  • cs_intervene
  • CsIntervene
  • csIntervene
  • └ reason
  • String
  • 买卖双方对赔付金额存在争议,申请客服介入
  • reason
  • └ amount
  • Number
  • 20
  • amount
  • └ dispute_id
  • String
  • 6924182853291573126
  • disputeId
  • └ proofs
  • String []
  • proofs
  • └ description
  • String
  • 客服已核实订单情况,等待双方确认
  • description
  • └ update_time
  • String
  • 2026-02-05 14:20:00
  • updateTime
  • └ apply_time
  • String
  • 2026-02-05 10:00:00
  • applyTime
  • └ status
  • String
  • PROCESSING
  • status
  • └ apply_id
  • Number
  • 6924182853291573126
  • applyId
  • └ seller_id
  • Number
  • 2200034567
  • sellerId
  • └ auto_agree_countdown
  • String
  • 2026-02-06 00:16:14
  • autoAgreeCountdown
  • └ apply_proofs
  • String []
  • applyProofs
  • └ gmt_update
  • String
  • 2026-02-05 08:30:00
  • gmtUpdate
  • └ compensate_amount
  • Number
  • 2000
  • compensateAmount
  • └ seller_refuse_reason
  • String
  • 我拒绝
  • sellerRrefuseReason
  • └ seller_refuse_proofs
  • String []
  • sellerRefuseProofs
  • └ seller_refuse_desc
  • String
  • 我拒绝
  • sellerRefuseDesc
  • └ service_code
  • String
  • service_code
  • serviceCode
  • └ success
  • Boolean
  • true
  • success
  • └ message
  • String
  • 成功
  • message

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaIdleGameBoostCompensateQueryRequest req = new AlibabaIdleGameBoostCompensateQueryRequest();
req.setOrderId(123231L);
req.setServiceCodes("[LOGIN,FINISH]");
AlibabaIdleGameBoostCompensateQueryResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_idle_game_boost_compensate_query_response>
    <result>
        <code>SUCCESS</code>
        <data>
            <total>1</total>
            <items>
                <items>
                    <order_id>2199589000001</order_id>
                    <apply_description>买家反馈代练未按约定完成目标段位,申请赔付</apply_description>
                    <apply_reason>未完成赔付</apply_reason>
                    <apply_reason_id>R001</apply_reason_id>
                    <action_list>
                        <action_list>
                            <name>同意赔付</name>
                            <trade_action>agreeCompensate</trade_action>
                        </action_list>
                    </action_list>
                    <gmt_create>2026-02-05 00:16:14</gmt_create>
                    <compensate_status>WAIT_SELLER_AGREE</compensate_status>
                    <cs_intervene>
                        <reason>买卖双方对赔付金额存在争议,申请客服介入</reason>
                        <amount>20</amount>
                        <dispute_id>6924182853291573126</dispute_id>
                        <description>客服已核实订单情况,等待双方确认</description>
                        <update_time>2026-02-05 14:20:00</update_time>
                        <apply_time>2026-02-05 10:00:00</apply_time>
                        <status>PROCESSING</status>
                    </cs_intervene>
                    <apply_id>6924182853291573126</apply_id>
                    <seller_id>2200034567</seller_id>
                    <auto_agree_countdown>2026-02-06 00:16:14</auto_agree_countdown>
                    <gmt_update>2026-02-05 08:30:00</gmt_update>
                    <compensate_amount>2000</compensate_amount>
                    <seller_refuse_reason>我拒绝</seller_refuse_reason>
                    <seller_refuse_desc>我拒绝</seller_refuse_desc>
                    <service_code>service_code</service_code>
                </items>
            </items>
        </data>
        <success>true</success>
        <message>成功</message>
    </result>
</alibaba_idle_game_boost_compensate_query_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

返回
顶部