注意:以下文档只适用于TOP接口,请谨慎使用!

文档中心 > API类目 > 阿里大于API

alibaba.aliqin.fc.iot.cardoffer (查询物联网卡上订购的offer)

查询物联网卡上订购的offer

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
billreal String 必须 89860617020025302476 具体ICCID的值
billsource String 必须 ICCID ICCID

响应参数

名称 类型 示例值 描述
result Result 结果对象
  • models
  • Model []
  • 123
  • 结果对象
  • └ expire_time
  • Date
  • 2017-04-19 00:00:00
  • 失效时间
  • └ effective_time
  • Date
  • 2017-04-19 00:00:00
  • 生效时间
  • └ order_time
  • String
  • 2017-04-19 00:00:00
  • 订购时间
  • └ offer_name
  • String
  • 名称
  • 商品名称
  • └ offer_id
  • String
  • 1234
  • 商品ID
  • └ code
  • String
  • 0
  • 1.成功;2.失败
  • └ success
  • Boolean
  • false
  • 状态
  • └ msg
  • String
  • 系统忙
  • 错误信息

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaAliqinFcIotCardofferRequest req = new AlibabaAliqinFcIotCardofferRequest();
req.setBillreal("89860617020025302476");
req.setBillsource("ICCID");
AlibabaAliqinFcIotCardofferResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_aliqin_fc_iot_cardoffer_response>
    <result>
        <models>
            <model>
                <expire_time>2017-04-19 00:00:00</expire_time>
                <effective_time>2017-04-19 00:00:00</effective_time>
                <order_time>2017-04-19 00:00:00</order_time>
                <offer_name>名称</offer_name>
                <offer_id>1234</offer_id>
            </model>
        </models>
        <code>0</code>
        <success>false</success>
        <msg>系统忙</msg>
    </result>
</alibaba_aliqin_fc_iot_cardoffer_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

返回
顶部