获取用户设置 #

描述 #

使用此接口修改用户设置。

接口说明 #

授权对象 APP

请求地址 GET /open/app/memberConfig

请求规则 请查阅开发必读

请求参数 #

参数名称 变量名称 参数类型[长度限制] 是否必填 描述
平台商户ID merchant_id uint32 body在系统后台获取。

示例值:1

请求示例 #

{
  "merchant_id": 1
}

响应结果 #

参数名称 变量名称 参数类型[长度限制] 是否必填 描述
用户名 names string[1,50]
手机号 mobile string[1,50] 1:是,2:否
是否自动接单 is_auto_accept int8 1:是,2:否
是否打印 is_auto_print int8 1:是,2:否
是否自动发单 is_auto_delivery int8 1:是,2:否
团队取消订单是否重新发单 is_resend int8 是 1:是,2:否
是否开启省钱模式 is_save_money int8 1:是,2:否
第一发单时长 fir_money_time uint32 时长内选择最便宜团队
第二发单时长 sec_money_time uint32 时长内选择第二便宜团队
即时单是否自动发单 is_auto_send int8 1:是,2:否
预订单是否自动发单 schedule_is_auto_send int8 1:是,2:否
即时单发单时间 send_time int8 单位:分钟
预订单发单时间 schedule_send_time int8 单位:分钟

响应示例 #

> 200 Response
{
  "code": 20000,
  "msg": "success",
  "data": {
    "item": {
      "names": "BOOL",
      "mobile": "18888888888",
      "is_auto_accept": 1,
      "is_resend": 1,
      "is_save_money": 1,
      "fir_money_time": 1,
      "sec_money_time": 2,
      "is_auto_send": 1,
      "schedule_is_auto_send": 1,
      "send_time": 2,
      "schedule_send_time": 30,
      "is_assist_meal": 1,
      "is_auto_delivery": 1,
      "is_auto_print": 1
    }
  }
}
上次更新: 5/9/2023, 8:22:52 PM