Skip to content

智能设备列表

商户可以通过该接口分页拉取到自己拥有的设备的列表。

请求参数类型描述
queryobject声明请求的查询参数
limitinteger最大资源条数
offsetinteger请求资源起始位置
php
$instance->v3->iotmanage->devices->getAsync([
  'query' => [
    'limit'  => 5,
    'offset' => 10,
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/iotmanage/devices')->getAsync([
  'query' => [
    'limit'  => 5,
    'offset' => 10,
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/iotmanage/devices']->getAsync([
  'query' => [
    'limit'  => 5,
    'offset' => 10,
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->iotmanage->devices->get([
  'query' => [
    'limit'  => 5,
    'offset' => 10,
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/iotmanage/devices')->get([
  'query' => [
    'limit'  => 5,
    'offset' => 10,
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/iotmanage/devices']->get([
  'query' => [
    'limit'  => 5,
    'offset' => 10,
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典类型描述
dataobject[]设备信息
device_snstring设备序列号
camera_snstring摄像头序列号
device_category_codestring设备品类代码
device_categorystring设备品类
device_class_codestring设备类型代码
device_classstring设备类型
device_modelstring设备型号
app_scene_codestring刷脸应用软件模式代码
app_scenestring刷脸应用软件模式
operating_systemstring刷脸应用操作系统
activation_statusstring激活状态
ACTIVATED | INACTIVATED 枚举值之一
activation_timestring激活时间
mchidstring商户号
merchant_shortnamestring商户简称
sub_mchidstring子商户号
sub_merchant_shortnamestring子商户简称
offsetinteger请求资源起始位置
limitinteger最大资源条数
total_countinteger资源总条数
linksobject相关链接
nextstring下一页链接
prevstring上一页链接
selfstring当前链接

参阅 官方文档

Published on the GitHub by TheNorthMemory