- 小程序应用相关
- 登录认证相关
- 运维工单信息接口
- 附件操作相关
- 服务评价相关接口
- CR单复核相关接口
- 工时填报相关接口
- 业绩目标相关接口
用户完善信息保存
测试中
开发环境
开发环境
POST
/common/exeBo.do
请求参数
Query 参数
uc
string
uc编号
示例值:
UC_APP_BINDORREGISTER_ACCOUNT
Body 参数application/json
openId
string
微信小程序OPENID
username
string
姓名
customerid
string
企业名称ID
mobile
string
手机号
email
string
邮箱
checkcode
string
邮箱验证码
示例
{
"openId": "string",
"username": "string",
"customerid": "string",
"mobile": "string",
"email": "string",
"checkcode": "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 'http://www.tiger.com:8666/api/common/exeBo.do?uc=UC_APP_BINDORREGISTER_ACCOUNT' \
--header 'Content-Type: application/json' \
--data-raw '{
"openId": "string",
"username": "string",
"customerid": "string",
"mobile": "string",
"email": "string",
"checkcode": "string"
}'
返回响应
🟢200成功
application/json
Body
success
boolean
是否成功
code
string
响应码
info
string
响应信息
data
object | null
响应数据
loginId
string
用户登录ID
示例
{
"success": true,
"code": "string",
"info": "string",
"data": {
"loginId": "string"
}
}
修改于 2023-12-05 09:07:52