文档中心 > API类目 > CRM猎户座前台

alibaba.crm.customer.owners.get (小满侧获取阿里跟进人员信息)

小满侧获取阿里跟进人员信息

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
ali_cgs String 必须 123456 客户ID

响应参数

名称 类型 示例值 描述
result ResultModel {} 结果
  • └ total
  • Number
  • 0
  • 总数
  • └ dateline
  • Number
  • 1629858412474
  • 时间戳
  • └ is_success
  • Boolean
  • true
  • 是否成功
  • values
  • OwnerInfoForOkki []
  • {}
  • 结果列表
  • └ mobile
  • String
  • 17671260000
  • 手机号
  • └ name
  • String
  • 李汉儒
  • 姓名
  • └ role_name
  • String
  • gs-客户专员
  • 角色名称
  • └ product_type
  • String
  • a2
  • 机会类型
  • └ error_status_code
  • String
  • null
  • 错误码
  • └ error_desc
  • String
  • null
  • 错误信息

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaCrmCustomerOwnersGetRequest req = new AlibabaCrmCustomerOwnersGetRequest();
req.setAliCgs("123456");
AlibabaCrmCustomerOwnersGetResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_crm_customer_owners_get_response>
    <result>
        <total>0</total>
        <dateline>1629858412474</dateline>
        <is_success>true</is_success>
        <values>
            <owner_info_for_okki>
                <mobile>17671260000</mobile>
                <name>李汉儒</name>
                <role_name>gs-客户专员</role_name>
                <product_type>a2</product_type>
            </owner_info_for_okki>
        </values>
        <error_status_code>null</error_status_code>
        <error_desc>null</error_desc>
    </result>
</alibaba_crm_customer_owners_get_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

返回
顶部