taobao.auction.loan.online.queryinvestorprofile (查询投资人画像)

查询投资人画像

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
query_investor_profile_a_p_i_request QueryInvestorProfileApiRequest 可选 queryInvestorProfileAPIRequest
  • └ service_provider_id
  • Number
  • 必须
  • 11111
  • 服务商id
  • └ user_id
  • String
  • 必须
  • 11111
  • 用户id

响应参数

名称 类型 示例值 描述
deep_dzc_action_type Number 1 资产深度行为
is_sub_house Boolean true 关注上新偏好(是否关注过房产)
is_new_user Boolean true 是否新用户
old_user_type Number 1 非纯新用户类型(依据生命周期类型)
is_mansion_prefer Boolean true 豪宅偏好
is_active_house_user Boolean true 活跃房产用户
is_house_high_intent_user Boolean true 房产高意向用户
call_success Boolean true 是否成功
fail_code String XXX_ERROR 错误编码
fail_message String 错误信息内容 错误信息

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AuctionLoanOnlineQueryinvestorprofileRequest req = new AuctionLoanOnlineQueryinvestorprofileRequest();
AuctionLoanOnlineQueryinvestorprofileRequest.QueryInvestorProfileApiRequest obj1 = new AuctionLoanOnlineQueryinvestorprofileRequest.QueryInvestorProfileApiRequest();
obj1.setServiceProviderId(11111L);
obj1.setUserId("11111");
req.setQueryInvestorProfileAPIRequest(obj1);
AuctionLoanOnlineQueryinvestorprofileResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<auction_loan_online_queryinvestorprofile_response>
    <deep_dzc_action_type>1</deep_dzc_action_type>
    <is_sub_house>true</is_sub_house>
    <is_new_user>true</is_new_user>
    <old_user_type>1</old_user_type>
    <is_mansion_prefer>true</is_mansion_prefer>
    <is_active_house_user>true</is_active_house_user>
    <is_house_high_intent_user>true</is_house_high_intent_user>
    <call_success>true</call_success>
    <fail_code>XXX_ERROR</fail_code>
    <fail_message>错误信息内容</fail_message>
</auction_loan_online_queryinvestorprofile_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

返回
顶部