文档
测试

2.账户资⾦流⽔

GET
http://localhost:8083/dataplatform/stat/svc/ad/board/accountCashFlow

接口描述

通过此接⼝可以查看⽤户的现⾦流⽔信息。

请求参数

参数名
类型
描述
必填
account_id
Integer
账号id
必填
operation_type
Integer
操作类型:0:消费,1:充值,2:⼈⼯返货,3:系统返货,4:反作弊 返款,5:特批返货,11:资⾦转⼊,12:资⾦转出,13:退款,14:现⾦退还。
必填
start_time
String
查询的起始时间,yyyyMMdd格式
必填
end_time
String
查询的起始时间,yyyyMMdd格式
必填
page
Integer
⻚数,从1开始,默认为1
可选
size
Integer
每⻚数量,默认15,最多100
可选

响应数据

```json { "code":0, "msg":"OK", "now":"2022-05-09 19:55:55", "data":{ "total":3, "records":[ { "create_time":"2022-05-09", "operation_type_desc":"效果广告消费", "total_amount":-283191.22 }, { "create_time":"2022-05-08", "operation_type_desc":"效果广告消费", "total_amount":-514372.51 }, { "create_time":"2022-05-07", "operation_type_desc":"效果广告消费", "total_amount":-362482.71 } ] } } ```