merchant/*/list - 列出钱包中的活动地址
使用merchant/$guid/list
调用列出钱包中的活动地址。
API调用
GET merchant/$guid/list
URI参数:
- $guid:要使用的钱包的唯一标识符
查询参数:
- password:钱包的密码
API返回值
返回钱包中的活动地址及其余额信息。
示例代码
使用curl调用merchant/$guid/list
的示例代码如下:
curl http://localhost:3000/merchant/$guid/list?password=1234567890
返回值:
{
"addresses": [
{
"balance": 1400938800,
"address": "1Q1AtvCyKhtveGm3187mgNRh5YcukUWjQC",
"label": "SMS Deposits",
"total_received": 5954572400
},
{
"balance": 79434360,
"address": "1A8JiWcwvpY7tAopUkSnGuEYHmzGYfZPiq",
"label": "My Wallet",
"total_received": 453300048335
},
{
"balance": 0,
"address": "17p49XUC2fw4Fn53WjZqYAm4APKqhNPEkY",
"total_received": 0
}
]
}