- discard(废弃)
- demo(模板-参考示例)
- usmile-wx(微信)
- uc(用户统一中心)
- user-web(健康&设备&我的)
- bff-cloud
- iot-sevice(IOT平台)
- cloud-admin(运营后台)
就诊推荐服务
开发中
POST
https://test.myusmile.online/bff/cloud/aiOralDetect/medicalServiceRecommend
请求参数
Header 参数
TOK
string
可选
默认值:
{{token}}
Body 参数application/json
object {0}
示例
{
"detectType": 3,
"problemList": [
"3_caries", // 龋齿
"3_stained", // 色素
"3_misaligned" // 牙列不齐
]
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://test.myusmile.online/bff/cloud/aiOralDetect/medicalServiceRecommend' \
--header 'TOK: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"detectType": 3,
"problemList": [
"3_caries", // 龋齿
"3_stained", // 色素
"3_misaligned" // 牙列不齐
]
}'
返回响应
🟢200成功
application/json
Body
code
integer
必需
message
string
必需
data
object
必需
hospitalVOS
array [object {13}]
必需
location
string
必需
示例
{
"code": 0,
"message": "string",
"data": {
"hospitalVOS": [
{
"id": 0,
"name": "string",
"subtitle": "string",
"description": "string",
"avatar": "string",
"sort": 0,
"province": "string",
"city": "string",
"district": "string",
"urlType": null,
"url": null,
"urlParam": null,
"doctorVOList": [
{
"id": 0,
"name": "string",
"hospitalId": 0,
"department": "string",
"title": "string",
"sort": 0,
"description": "string",
"avatar": "string"
}
]
}
],
"location": "string"
}
}