发起支付

请求网址(post提交):https://www.yiyipay.com/api/v1/submit
参数 类型 必填 描述
merchant_id Int 平台分配的商户号
order_no String 商户订单号,只能为英文、数字或者下划线的一种或多种组合, 字符长度2-32
channel_type Int 渠道类型 , 1:签约渠道, 2:外部渠道
channel_code String 渠道编码 , 登录商户中心,前往渠道信息处获取
submit_time Timestamp 提交时间,支付创建时的 10 位时间戳
pay_amount Float 提交金额, 单位:元 。保留两位小数点,如0.10、10.99等
pay_title String 订单标题,字符长度:2-32
notify_url Url 异步通知地址,url为http/https路径 Url上请勿附带参数
callback_url Url 页面跳转地址,url为http/https路径 可为空
description String 附加参数,随通知下送给商户,0-100个字符长度,可为空
sign String 签名,签名方式仅支持RSA2方式,算法请点击 签名算法 查看
返回数据:
状态码 示例值 描述
code success 返回值,success:成功,其他返回值详见 参数附录
msg 支付成功! 返回信息提示
data 见下方 payurl : 支付地址 , qrcode:支付地址二维码 。
成功示例:
         {
            "code":"success",
            "msg":"success",
            "data": {
                "payurl":"http://www.xxxxx.com/",
                "qrcode":"http://www.xxxxx.com/img.img",
            }
         }
        
失败示例:
            
{ "code":"parameter_error", "msg":"提交的参数有误", "data": {} }