merchant/*/payment - 向单一地址支付
使用merchant/$guid/payment
调用从钱包向单一外部地址支付
API调用
GET merchant/$guid/payment
URI参数:
- $guid:要使用的钱包的唯一标识符
查询参数:
- password:钱包的密码
- second_password:钱包的第二密码,如果启动双重加密的话
- to:收款地址
- amount:发送金额,单位:satoshi
- from:指定发送地址,可选
- fee:手续费,可选,单位:satoshi
API返回值
返回支付处理信息,主要字段如下:
- message:处理提示信息
- tx_hash:支付交易哈希
- notice:通知信息
示例代码
使用curl调用merchant/$guid/payment
的示例代码如下:
curl http://localhost:3000/merchant/$guid/payment?password=1234567890&to=1A8JiWcwvpY7tAopUkSnGuEYHmzGYfZPiq&amount=10000000
返回值:
{
"message" : "Sent 0.1 BTC to 1A8JiWcwvpY7tAopUkSnGuEYHmzGYfZPiq" ,
"tx_hash" : "f322d01ad784e5deeb25464a5781c3b20971c1863679ca506e702e3e33c18e9c" ,
"notice" : "Some funds are pending confirmation and cannot be spent yet (Value 0.001 BTC)"
}