- 公共请求参数
- 公共返回结果
- 接口说明模板
- app-user
- 用户相关接口
- KYC税务表单接口
- 工单相关接口
- 沟通记录相关接口
- 审核相关接口
- KYC资料相关接口
- 通行证相关接口
- 风险等级测评接口
- 银行卡相关接口
- 大额投资者认证接口
- 零售客户行情订阅相关接口
- app-client
- 用户相关接口
- 审核相关接口
- 工单相关接口
- KYC税务表单接口
- 沟通记录相关接口
- KYC资料相关接口(临时保存)
- 通行证相关接口
- 风险等级测评接口
- 银行卡相关接口
- 大额投资者认证接口
- 零售客户行情订阅相关接口
- 交易系统相关接口
- 券商注册
- app-control
- app-report
- app-trading
- app-common
- app-platform
- app-notice
- app-storage
- app-public-fund
- app-order
- app-settle
- app-fund
- notification-center
- app-setting
- app-geography
更新用户档案模块状态
将废弃
POST
/user/audit/update/status
crm-app-user/用户接口
接口变更记录#
变更版本 | 变更时间 | 变更人 | 变更内容 | 备注 |
---|---|---|---|---|
V1.0.0 | 2023-10-27 | faim mo | 路由变更:/user/audit/updateStatus 变更 /user/audit/update/status | |
V1.5.0 | 2024-06-17 | fain mo | 下线 |
请求结构#
1.
2.
公共参数#
签名方法#
1.
公共返回结果#
接口描述#
1.
接口压测#
实际并发数 | 实际RT | 实际TPS | 频率限制次数(次/秒) |
---|---|---|---|
无 |
请求参数
Body 参数application/json
data
object
data详情
idDocNum
string
可选
kycType
enum<string>
必需
枚举值:
archives_autographarchives_familyarchives_contactarchives_addressarchives_employmentarchives_financearchives_investarchives_realarchives_personal
示例值:
archives_personal
realDocNum
string
可选
remark
string
备注
示例值:
这是一个备注
serial
string
审核序列号
status
string
kyc状态
示例值:
wait
uuid
string
uuid
示例值:
A01210
示例
{
"uuid": "U5810588",
"status": "pass",
"kycType": "archives_contact",
"data": {
"area": [
"1",
"3124",
"36397"
],
"addressLocal": {
"inputValue": {
"district": "1"
}
},
"addressEn": {
"inputValue": {
"district": "2"
}
},
"zip": "231123",
"emailAddressLocal": {
"inputValue": {
"address": ""
}
},
"emailAddressLocalEn": {
"inputValue": {
"address": ""
}
}
}
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/user/audit/update/status' \
--header 'Content-Type: application/json' \
--data-raw '{
"uuid": "U5810588",
"status": "pass",
"kycType": "archives_contact",
"data": {
"area": [
"1",
"3124",
"36397"
],
"addressLocal": {
"inputValue": {
"district": "1"
}
},
"addressEn": {
"inputValue": {
"district": "2"
}
},
"zip": "231123",
"emailAddressLocal": {
"inputValue": {
"address": ""
}
},
"emailAddressLocalEn": {
"inputValue": {
"address": ""
}
}
}
}'
返回响应
🟢200OK
application/json
Body
code
integer
必需
data
object
可选
msg
string
必需
success
boolean
必需
traceId
string
必需
示例
{
"code": 0,
"success": true,
"data": null,
"msg": "success",
"traceId": "CA-3405215415-fZJ31n3V-575630-229982"
}
修改于 2024-07-03 02:52:30