获取用户的交易账单。在创建服务订单后,Feat会自动生成交易账单。前端可利用对应的交易账单号,对订单进行支付、查询状态等交易操作。关于如何创建服务订单,请查看服务订单文档。
Request
HTTP request
POST https://www.featapi.com/api/user/demand/
Parameters
无需添加参数。
Authorization
该请求需要授权以下scopes访问权限:
Scopes |
---|
pay_trade_order |
For more information, see the authentication and authorization page.
Request body
无需添加参数。
Response
HTTP状态码:200
请求成功,返回交易账单列表数据在响应体信息。
Property name | Type | Description | Notes |
---|---|---|---|
sn | string | 账单号,唯一 | |
pay_method | string | 交易方式,目前实装的方式:微信、银联、支付宝 | 0:银联,100:支付宝,200:微信 |
user | integer | 用户UID | |
currency | string | 交易的货币代码 | 比如人民币为CNY、美金为USD |
amount | integer | 交易金额,单位是分 | 比如交易金额为1元CNY,则数值为100 |
type | integer | 账单类型,目前为固定值100 | |
status | integer | 交易状态, |
{
"data": [
{
"sn": "201907160918215339424699876",
"query_id": "381907161718219792528",
"pay_method": 0,
"user": 7710697714770,
"inbound": 0,
"outbound": 0,
"currency": "CNY",
"amount": 8000,
"type": 100,
"status": 200,
"created_at": "2019-07-16T09:18:21.621743Z",
"fee": 0
},
...
}