- 开放平台 ReadMe
- 加解签规则
- 开放平台加解密规范(新)
- 接口地址
- 关于小程序
- 最福利订单状态枚举
- 最福利物流编码
- 内部文档-不提供外部使用
- 供应商
- 渠道方
- 最福利收银台-积分在外部系统-渠道方使用
- 第三方系统收银台-积分在外部系统-渠道方使用
- 实物商城-api对接-渠道方使用
- 订单系统
- 电子卡券对接
- 充值中心对接
- 充值1.0
- 最福利收银台-积分在外部系统-渠道方使用
- 定制需求
- 永辉
- 众安订餐定制需求
- 云学堂
- 体检
- 众安十周年需求定制
- 实物商城卡券兑换
- 机票/酒店对接外部渠道
- 众安积分买保险
- ZALife
- 积分
- 通讯录
- 收银订单业务
- 开放平台-接口模版POST
- 开放平台-接口模版(对接实例)POST
【内】下单并静默支付并绑定使用手机号
正式环境
https://open.zuifuli.com
正式环境
https://open.zuifuli.com
POST
https://open.zuifuli.com
最后修改时间:2023-12-07 03:38:51
1.
2.
3.
请求参数
Body 参数application/json
productId
string
产品Id
quantitiy
integer
购买数量
outOrderId
string
外部唯一ID
sendSMS
boolean
是否发送短信
phone
string
使用人手机号
canModifyReserveInfo
boolean
可选
示例
{
"productId": "string",
"quantitiy": 0,
"outOrderId": "string",
"sendSMS": true,
"phone": "string",
"canModifyReserveInfo": true
}
返回响应
🟢200成功
application/json
Body
code
integer
必需
message
string | null
可选
result
object (CardTradeResponse)
可选
cardId
number
卡Id
cardNo
string
卡号
cardPassword
string
卡密
orderId
string
关联订单
示例
{
"code": 0,
"message": "string",
"result": {
"cardId": 0,
"cardNo": "string",
"cardPassword": "string",
"orderId": "string"
}
}