文档中心 > API类目 > 天猫汽车

tmall.aliauto.fulfillment.natives.syncstoretechnician.save (天猫养车同步技术信息)

天猫养车同步技术信息

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
tmallyc_store_technician_req TmallNativeStoreTechnicianReq 可选 门店技师基本信息
  • └ certified_label_list
  • String []
  • 可选
  • 轮胎更换
  • 岗位标签
  • └ install_store_id
  • Number
  • 可选
  • 912529138885
  • 安装服务的商户门店id
  • └ technician_name
  • String
  • 可选
  • 张三
  • 技师姓名
  • └ technician_avatar
  • String
  • 可选
  • https://img-home.csdnimg.cn/images/20240711042549.png
  • 技师头像
  • └ technician_sort
  • Number
  • 可选
  • 9
  • 排序,分数大的排前面
  • └ area_expertise_list
  • String []
  • 可选
  • 洗车
  • 擅长领域
  • └ employee_id
  • String
  • 可选
  • 701985
  • 门店员工id

响应参数

名称 类型 示例值 描述
data Boolean true 返回类型
result_success Boolean true 调用结果
msg_info String 门店不存在 错误消息
msg_code String STORE_NOT_EXIST 错误码

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
TmallAliautoFulfillmentNativesSyncstoretechnicianSaveRequest req = new TmallAliautoFulfillmentNativesSyncstoretechnicianSaveRequest();
TmallAliautoFulfillmentNativesSyncstoretechnicianSaveRequest.TmallNativeStoreTechnicianReq obj1 = new TmallAliautoFulfillmentNativesSyncstoretechnicianSaveRequest.TmallNativeStoreTechnicianReq();
obj1.setCertifiedLabelList("轮胎更换");
obj1.setInstallStoreId(912529138885L);
obj1.setTechnicianName("张三");
obj1.setTechnicianAvatar("https://img-home.csdnimg.cn/images/20240711042549.png");
obj1.setTechnicianSort(9L);
obj1.setAreaExpertiseList("洗车");
obj1.setEmployeeId("701985");
req.setTmallycStoreTechnicianReq(obj1);
TmallAliautoFulfillmentNativesSyncstoretechnicianSaveResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<tmall_aliauto_fulfillment_natives_syncstoretechnician_save_response>
    <data>true</data>
    <result_success>true</result_success>
    <msg_info>门店不存在</msg_info>
    <msg_code>STORE_NOT_EXIST</msg_code>
</tmall_aliauto_fulfillment_natives_syncstoretechnician_save_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

返回
顶部