alibaba.mos.brand.coproduct.group.user.query (按照条件查询分页数据)

按照条件查询分页数据

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
brand_co_product_group_user_query_param BrandCoProductGroupUserQueryParam 可选 查询条件
  • └ pre_max_id
  • Number
  • 可选
  • 1
  • 上一页最大id
  • └ page_no
  • Number
  • 可选
  • 1
  • 当前页数
  • └ page_size
  • Number
  • 可选
  • 100
  • 分页条数
  • └ business_time
  • Date
  • 可选
  • 2023-06-01 00:00:00
  • 业务时间

响应参数

名称 类型 示例值 描述
trace_id String xxxx 调用链id
async_result String null 异步结果
data BrandCoProductGroupUserDTO [] 组员列表信息
  • └ id
  • Number
  • 1
  • 组员数据id
  • └ gmt_create
  • Date
  • 2023-06-01
  • 数据创建时间
  • └ gmt_modified
  • Date
  • 2023-06-01
  • 数据修改时间
  • └ gz_name_cn
  • String
  • xxx
  • 品牌名称
  • └ main_work_no
  • String
  • 1xxxx1
  • 主责任工号
  • └ main_name
  • String
  • xxxx
  • 主责任姓名
  • └ member_name
  • String
  • xxxx
  • 组员姓名
  • └ member_work_no
  • String
  • 1xxx1
  • 组员工号
  • └ contract_type
  • String
  • 大掌柜
  • 承包方式
  • └ start_date
  • Date
  • 2023-06-01
  • 开始时间
  • └ end_date
  • Date
  • 2023-07-01
  • 结束时间
issuccess Boolean true 调用是否成功
errcode String 500 错误code
is_async Boolean false 是否同步
attributes Json null 扩展字段
err_message String xxx 错误信息

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaMosBrandCoproductGroupUserQueryRequest req = new AlibabaMosBrandCoproductGroupUserQueryRequest();
AlibabaMosBrandCoproductGroupUserQueryRequest.BrandCoProductGroupUserQueryParam obj1 = new AlibabaMosBrandCoproductGroupUserQueryRequest.BrandCoProductGroupUserQueryParam();
obj1.setPreMaxId(1L);
obj1.setPageNo(1L);
obj1.setPageSize(100L);
obj1.setBusinessTime(StringUtils.parseDateTime("2023-06-01 00:00:00"));
req.setBrandCoProductGroupUserQueryParam(obj1);
AlibabaMosBrandCoproductGroupUserQueryResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_mos_brand_coproduct_group_user_query_response>
    <trace_id>xxxx</trace_id>
    <async_result>null</async_result>
    <data>
        <brand_co_product_group_user_d_t_o>
            <id>1</id>
            <gmt_create>2023-06-01</gmt_create>
            <gmt_modified>2023-06-01</gmt_modified>
            <gz_name_cn>xxx</gz_name_cn>
            <main_work_no>1xxxx1</main_work_no>
            <main_name>xxxx</main_name>
            <member_name>xxxx</member_name>
            <member_work_no>1xxx1</member_work_no>
            <contract_type>大掌柜</contract_type>
            <start_date>2023-06-01</start_date>
            <end_date>2023-07-01</end_date>
        </brand_co_product_group_user_d_t_o>
    </data>
    <issuccess>true</issuccess>
    <errcode>500</errcode>
    <is_async>false</is_async>
    <attributes>null</attributes>
    <err_message>xxx</err_message>
</alibaba_mos_brand_coproduct_group_user_query_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

返回
顶部