接口设置
财务对账
运营数据
人脸验证
虚拟电话
短信验证
消息服务
支付系统
广告系统
分账系统
手机通知
地图服务
财务对账接口配置
第三方服务配置
GET
/api/v1/finance/reconciliation/list
获取对账列表
参数: date, merchantId, status
返回: { code: 200, data: [...] }
运营数据接口配置
第三方服务配置
GET
/api/v1/operation/data/statistics
获取运营统计数据
参数: startDate, endDate, type
返回: { code: 200, data: {...} }
人脸验证接口配置
第三方服务配置
POST
/api/v1/face/verify
人脸验证接口
参数: userId, imageBase64, liveness
返回: { code: 200, data: { score: 92.5, passed: true } }
虚拟电话接口配置
第三方服务配置
POST
/api/v1/phone/call
发起虚拟电话
参数: virtualNumber, callerNumber, calleeNumber
返回: { code: 200, data: { callId: "C123456789" } }
短信验证接口配置
第三方服务配置
POST
/api/v1/sms/send
发送短信验证码
参数: phone, type, templateId
返回: { code: 200, data: { code: "123456", expire: 300 } }
消息服务接口配置
第三方服务配置
POST
/api/v1/message/send
发送消息(短信/站内信/推送)
参数: userId, type, content, templateId
返回: { code: 200, data: { messageId: "M123456", sent: true } }
GET
/api/v1/message/template/list
获取消息模板列表
参数: type, status
返回: { code: 200, data: [...] }
支付系统接口配置
第三方服务配置
POST
/api/v1/payment/create
创建支付订单
参数: orderId, amount, paymentMethod
返回: { code: 200, data: { paymentId: "P123456", qrCode: "..." } }
广告系统接口配置
第三方服务配置
GET
/api/v1/advertising/list
获取广告列表
参数: position, status
返回: { code: 200, data: [...] }
分账系统接口配置
第三方服务配置
POST
/api/v1/split/create
创建分账订单
参数: orderId, recipients: [{account, amount, ratio}]
返回: { code: 200, data: { splitId: "S123456" } }
手机通知接口配置
第三方服务配置
POST
/api/v1/push/send
发送推送通知
参数: userId, title, content, type
返回: { code: 200, data: { pushId: "P123456", sent: true } }
地图服务接口配置
第三方地图服务配置
GET
/v3/geocode/geo
地理编码:地址转坐标
参数: address, city
返回: { status: "1", geocodes: [{ location: "116.397128,39.916527" }] }
GET
/v3/geocode/regeo
逆地理编码:坐标转地址
参数: location (经纬度)
返回: { status: "1", regeocode: { formatted_address: "北京市朝阳区建国路88号" } }
GET
/v3/direction/driving
路径规划:驾车导航路线
参数: origin, destination, strategy
返回: { route: { paths: [{ distance: "5200", duration: "900" }] } }
GET
/v3/place/around
周边搜索:搜索附近宴会厅
参数: location, keywords, radius
返回: { pois: [{ name: "金碧辉煌宴会厅", location: "116.397128,39.916527" }] }
POST
/api/v1/location/share
实时位置共享(宴会群专用)
参数: userId, groupId, latitude, longitude, accuracy
返回: { code: 200, data: { shareId: "LOC123", updateTime: "2024-01-15 10:30" } }
GET
/v3/distance
距离计算:计算成员到宴会厅的距离
参数: origins, destination, type
返回: { results: [{ distance: "520", duration: "300" }] }