自助购卡发卡-创建支付订单
GET
/api/app/create_card_buy_order最后修改时间: 2 年前
责任人: 未设置
请求参数
Query 参数
pay_type
integer
必需
支付方式,1=微信,2=支付宝,3=QQ钱包
示例值:
1
type
number
必需
购买卡密类型,0=分钟、1=小时、2=天、3=周、4=月、7=季度、8=半年、5=年、6=永久、point=积分
示例值:
1
value
integer
必需
购买卡密面值,比如卡密类型传的是1也就是小时卡,这里卡密面值传2代表2小时
示例值:
1
num
integer
购买数量
示例值:
1
phone
string
必需
手机号码,用于短信接收卡密,也用于查询订单
示例值:
18888888888
password
string
可选
查单密码,若后台开启下单需要设置查单密码时此项则必传
示例值:
123456
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
message
string
必需
timestamp
integer
必需
nonceStr
string
必需
apiInfo
string
必需
data
object
必需
appid
integer
必需
order_no
string
订单编号
type
integer
订单类型
goods_type
string
商品类型
goods_num
string
商品数量
goods_value
string
商品面值
pay_type
string
支付方式
user
string
下单用户
query_password
string
查单密码
create_time
integer
创建时间
price
integer
订单金额
id
string
订单ID
order_key
string
订单key
pay_url
string
付款链接
moreOtherData
object
必需
signature
string
必需
示例
成功示例
{
"code": 1,
"message": "下单成功",
"timestamp": 1677149222,
"nonceStr": "f60b6de96cd1b3aacaa045abd2f2fa00",
"apiInfo": "{\"id\":93,\"name\":\"在线支付-自助购卡发卡-创建支付订单\",\"controller\":\"App\",\"method\":\"create_card_buy_order\",\"api\":\"app\\/create_card_buy_order\"}",
"data": {
"appid": 10,
"order_no": "2023022318470284862307",
"type": 5,
"goods_type": "1",
"goods_num": "1",
"goods_value": "1",
"pay_type": "1",
"user": "18888888888",
"query_password": "123456",
"create_time": 1677149222,
"price": 2,
"id": "95",
"order_key": "c4c0e6021b37d681eaf97d0c13d6bccc33318f7e",
"pay_url": "http://yanzheng.giao.cc/index/buy/pay/order_id/95",
"moreOtherData": {
"api_extra_data": "",
"request_safe_code": ""
}
},
"signature": "817f3b8be7bbe80da0ae789b00288efd"
}
最后修改时间: 2 年前