- 概述
- 定制配置
- API
- WEB
- SC
- OP
- MP
- MP Copy
- PP
- APP
- OpenApi
- 机构运营报表
- 未命名接口POST
商户员工登录认证
POST
/bis/mp/app/user/employee/auth
最后修改时间:2022-12-14 00:55:17
责任人:严子雄
可以通过登录账号ID登录
手机号和登录名二传一
请求参数
Body 参数application/x-www-form-urlencoded
institution_no
string
机构号
login_account_id
integer
登录账号ID
phone
string
手机号
login_name
string
登录名
password
string
必需
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/bis/mp/app/user/employee/auth' \
--data-urlencode 'institution_no=' \
--data-urlencode 'password='
返回响应
🟢200成功
application/json
Body
code
string
返回码
msg
string
返回说明
data
object
返回数据
total
integer
数据总条数
list
array [object {20}]
当前返回数据
示例
{
"code": "string",
"msg": "string",
"data": {
"total": 0,
"list": [
{
"login_account_id": 0,
"employee_id": 0,
"institution_no": "string",
"merchant_no": "string",
"merchant_name": "string",
"service_type": 0,
"locked_status": 0,
"last_login_time": "string",
"role_id": 0,
"role_type": "string",
"role_name": "string",
"employee_name": "string",
"store_no": "string",
"email": "string",
"phone": "string",
"username": "string",
"timezone": "string",
"language": "string",
"must_change_password": true,
"change_password_type": 0
}
]
}
}