- 公共请求参数
- 公共返回结果
- 接口说明模板
- 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
crm-app-user/重构py接口 获取审核列表(MySQL)
接口变更记录#
变更记录 | 变更时间 | 变更人 | 变更内容 | 备注 |
---|---|---|---|---|
V1.0.0 | 2023-10-27 | fain mo | 路由变更:/user/audit/user_register 变更 /user/audit | |
V1.0.0 | 2023-10-27 | fain mo | 出入参变更:下划线变更驼峰 | |
V1.5.0 | 2024-06-17 | fain mo | 下线 |
请求结构#
1.
2.
公共参数#
签名方法#
1.
公共返回结果#
接口描述#
1.
接口压测#
错误码#
code | message | 描述 |
---|---|---|
200118 | Account opening is not allowed in this country | 此国家/地区不允许开户 |
请求参数
Body 参数application/json
auditType
string
审核类型
uuid
string
用户uuid
status
string
审核状态
data
object
审核数据
示例
{
"uuid": "I3242886",
"status": "wait",
"data": {
"area": [
"AGO",
"3388"
],
"addressLocal": {
"buildingSelect": null,
"roomSelect": null,
"inputValue": {
"district": null,
"street": null,
"community": null,
"address": "本地语言开发语言还有什么语言"
}
},
"addressEn": {
"buildingSelect": null,
"roomSelect": null,
"inputValue": {
"district": null,
"street": null,
"community": null,
"address": "native language development language what other languages"
}
},
"zip": "0313131122123",
"instantMessage": [
{
"type": "Telegram",
"value": "41561021111"
},
{
"type": "Skype",
"value": "1231"
},
{
"type": "Naver",
"value": "123123123"
}
],
"emailArea": null,
"emailZip": null,
"emailAddressLocal": null,
"emailAddressLocalEn": null,
"areaAccordEmail": true
},
"audit_type": "archives_contact"
}
示例代码
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' \
--header 'Content-Type: application/json' \
--data-raw '{
"uuid": "I3242886",
"status": "wait",
"data": {
"area": [
"AGO",
"3388"
],
"addressLocal": {
"buildingSelect": null,
"roomSelect": null,
"inputValue": {
"district": null,
"street": null,
"community": null,
"address": "本地语言开发语言还有什么语言"
}
},
"addressEn": {
"buildingSelect": null,
"roomSelect": null,
"inputValue": {
"district": null,
"street": null,
"community": null,
"address": "native language development language what other languages"
}
},
"zip": "0313131122123",
"instantMessage": [
{
"type": "Telegram",
"value": "41561021111"
},
{
"type": "Skype",
"value": "1231"
},
{
"type": "Naver",
"value": "123123123"
}
],
"emailArea": null,
"emailZip": null,
"emailAddressLocal": null,
"emailAddressLocalEn": null,
"areaAccordEmail": true
},
"audit_type": "archives_contact"
}'
返回响应
🟢200OK
application/json
Body
code
integer
必需
success
boolean
必需
data
object
必需
serial
string
必需
uuid
string
必需
msg
string
必需
traceId
string
必需
示例
{
"code": 0,
"success": true,
"data": {
"serial": "AC202308250948109478",
"uuid": "I3242886"
},
"msg": "success",
"traceId": "B-2244TTVA-11699-248282"
}