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

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

alibaba.aliqin.fc.iot.cardInfo (物联卡信息查询)

物联卡信息查询

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
iccid String 必须 1234567 SIM卡号

响应参数

名称 类型 示例值 描述
result Result 结果对象
  • └ model
  • String
  • {"OpenTime":"开户时间","IMSI":"IMSI号","FirstActiveTime":"第一次激活时间","MSISDN":"MSISDN号","ICCID":"ICCID号","Status":{"GprsStatus":"开/关","VoiceStatus":"开/关","SmsStatus":"开/关"}}
  • "OpenTime":"开户时间","IMSI":"IMSI号","FirstActiveTime":"第一次激活时间","MSISDN":"MSISDN号","ICCID":"ICCID号"
  • └ code
  • String
  • 10010
  • 错误码
  • └ success
  • Boolean
  • false
  • 状态
  • └ msg
  • String
  • 系统忙
  • 错误信息

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaAliqinFcIotCardInfoRequest req = new AlibabaAliqinFcIotCardInfoRequest();
req.setIccid("1234567");
AlibabaAliqinFcIotCardInfoResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_aliqin_fc_iot_cardInfo_response>
    <result>
        <model>{&quot;OpenTime&quot;:&quot;开户时间&quot;,&quot;IMSI&quot;:&quot;IMSI号&quot;,&quot;FirstActiveTime&quot;:&quot;第一次激活时间&quot;,&quot;MSISDN&quot;:&quot;MSISDN号&quot;,&quot;ICCID&quot;:&quot;ICCID号&quot;,&quot;Status&quot;:{&quot;GprsStatus&quot;:&quot;开/关&quot;,&quot;VoiceStatus&quot;:&quot;开/关&quot;,&quot;SmsStatus&quot;:&quot;开/关&quot;}}</model>
        <code>10010</code>
        <success>false</success>
        <msg>系统忙</msg>
    </result>
</alibaba_aliqin_fc_iot_cardInfo_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

返回
顶部