文档中心 > API类目 > 交易猫API

alibaba.jym.industry.trade.max.price.get (获取交易猫单个游戏渠道帐号交易成功最高价)

获取交易猫单个游戏渠道帐号交易成功最高价

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
jym_max_price_request JymMaxPriceRequestDTO 可选 请求
  • └ jym_game_id
  • String
  • 可选
  • 1009207
  • 交易猫游戏ID
  • └ channel
  • String
  • 可选
  • OPPO
  • 渠道标识

响应参数

名称 类型 示例值 描述
result JymMaxPriceOrderInfoDTO 最高价订单信息
  • └ jym_game_id
  • String
  • 1009207
  • 交易猫游戏ID
  • └ jym_game_name
  • String
  • 原神
  • 交易猫游戏名称
  • └ order_price
  • Number
  • 90000
  • 订单价格
sub_code_type String 10001 子错误码
is_success Boolean true 是否成功
sub_extra_err_msg String 系统超时 子错误码描述
state_code String TIME_OUT 错误码
extra_err_msg String 系统内部错误 错误信息

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaJymIndustryTradeMaxPriceGetRequest req = new AlibabaJymIndustryTradeMaxPriceGetRequest();
AlibabaJymIndustryTradeMaxPriceGetRequest.JymMaxPriceRequestDTO obj1 = new AlibabaJymIndustryTradeMaxPriceGetRequest.JymMaxPriceRequestDTO();
obj1.setJymGameId("1009207");
obj1.setChannel("OPPO");
req.setJymMaxPriceRequest(obj1);
AlibabaJymIndustryTradeMaxPriceGetResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_jym_industry_trade_max_price_get_response>
    <result>
        <jym_game_id>1009207</jym_game_id>
        <jym_game_name>原神</jym_game_name>
        <order_price>90000</order_price>
    </result>
    <sub_code_type>10001</sub_code_type>
    <is_success>true</is_success>
    <sub_extra_err_msg>系统超时</sub_extra_err_msg>
    <state_code>TIME_OUT</state_code>
    <extra_err_msg>系统内部错误</extra_err_msg>
</alibaba_jym_industry_trade_max_price_get_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

返回
顶部