企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
## 转账记录 ### 请求header需添加Authorization参数 ~~~[api] post:/api/v1/transfer/user int:type#类型 1转出 2转入 int:coinid#货币编号,详见电子货币>货币列表 int:page=1#页码 <<< success { "code": 0, "msg": "SUCCESS", "data": [ { "id": 1, "amount": 1, "to": "aaaaaaaaaaabbbbbbbbbcccccc", "status": 0, "create_time": 1561211121, "type": 1 } ] } <<< errror { "code": 1, "msg": "具体的错误信息", "data": [] } ~~~ ### 参数说明 参数名 | 参数类型 | 说明 -|-|-| id | Number | 转账记录编号 amount | Number | 数量 to | String | 接收方 status | Number | 状态,0待上链 1成功 create_time | Number | 发起时间 type | Number | 类型 1转出 2转入