文档中心 > API类目 > 天眼工作室API

alibaba.security.deepvision.onen.cloths.imagelist (服装图片列表)

服装图片列表

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
param DpClothsImageParam 可选 参数
  • └ type_id
  • Number
  • 可选
  • 220
  • 底库ID
  • └ type
  • String
  • 必须
  • type
  • 服装图片类型
  • └ pic_id_list
  • String []
  • 可选
  • 123123
  • 图片ID集合
  • └ scene_code
  • String
  • 必须
  • staff
  • 场景编码
  • └ data_set_id
  • String
  • 可选
  • dataSetId
  • 数据集编码
  • └ request_id
  • String
  • 可选
  • requestId
  • 请求唯一ID建议UUID
  • └ tenant_code
  • String
  • 必须
  • 8888
  • 租户编码
  • └ token
  • String
  • 必须
  • 137 CC4D408D18C69B548D196E1EE18EDE04F401862377BF5E03755F5F020002BAF9378BE89858C6F4D777839A3023F3F288ACF29EA6A14867B06455D8C3D2E74
  • token

响应参数

名称 类型 示例值 描述
result Datas [] 服装照片查询列表
  • └ tenant_code
  • String
  • 8888
  • 租户ID
  • └ scene_code
  • String
  • staff
  • 场景ID[必须]
  • └ type
  • String
  • type
  • 类型
  • └ pic_id
  • String
  • 1242432
  • 图片ID
  • └ oss
  • String
  • www.ali.com
  • 图片地址
resp_code Number 1 返回码
resp_success Boolean true 是否成功
resp_request_id String 1234热2 请求唯一ID
message String 成功 返回描述

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaSecurityDeepvisionOnenClothsImagelistRequest req = new AlibabaSecurityDeepvisionOnenClothsImagelistRequest();
AlibabaSecurityDeepvisionOnenClothsImagelistRequest.DpClothsImageParam obj1 = new AlibabaSecurityDeepvisionOnenClothsImagelistRequest.DpClothsImageParam();
obj1.setTypeId(220L);
obj1.setType("type");
obj1.setPicIdList("123123");
obj1.setSceneCode("staff");
obj1.setDataSetId("dataSetId");
obj1.setRequestId("requestId");
obj1.setTenantCode("8888");
obj1.setToken("137 CC4D408D18C69B548D196E1EE18EDE04F401862377BF5E03755F5F020002BAF9378BE89858C6F4D777839A3023F3F288ACF29EA6A14867B06455D8C3D2E74");
req.setParam(obj1);
AlibabaSecurityDeepvisionOnenClothsImagelistResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_security_deepvision_onen_cloths_imagelist_response>
    <result>
        <datas>
            <tenant_code>8888</tenant_code>
            <scene_code>staff</scene_code>
            <type>type</type>
            <pic_id>1242432</pic_id>
            <oss>www.ali.com</oss>
        </datas>
    </result>
    <resp_code>1</resp_code>
    <resp_success>true</resp_success>
    <resp_request_id>1234热2</resp_request_id>
    <message>成功</message>
</alibaba_security_deepvision_onen_cloths_imagelist_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

返回
顶部