简要描述:

  • 收入统计接口

请求域名:

  • http://xx.com

请求URL:

GET/获取推广中心数据:finance.income-page.income-charts

参数:

参数名 是否必须 类型 说明
charts_type int 统计图数据类型:1收入占比,不传或者传其他返回收入动态数据

返回示例:

正确时返回:

收入动态
{
	"result": 1,
	"msg": "ok",
	"data": {
		"x_axis": [
			"07/16",
			"07/17",
			"07/18",
			"07/19",
			"07/20",
			"07/21",
			"07/22",
			"07/23",
			"07/24",
			"07/25",
			"07/26",
			"07/27",
			"07/28",
			"07/29",
			"07/30"
		],
		"income_count": [
			0,
			0,
			0,
			0,
			0,
			0,
			0,
			0,
			0,
			0,
			0,
			0,
			0,
			0,
			0
		],
		"total_amount": [
			0,
			0,
			0,
			0,
			0,
			0,
			0,
			0,
			0,
			0,
			0,
			0,
			0,
			0,
			0
		]
	}
}
收入占比
{
	"result": 1,
	"msg": "ok",
	"data": [
		{
			"type_name": "其他",
			"total_amount": 0
		}
	]
}

错误时返回:

  {
    "result": 0,
    "msg": "获取失败"
  }

返回参数说明:

(收入动态)参数名 类型 说明
x_axis array x轴数据
income_count array 收入金额Y轴数据
total_amount array 收入笔数Y轴数据
(收入占比)参数名 类型 说明
type_name array 收入类型名称
total_amount array 该类型收入的销售额

备注:

  • 更多返回错误代码请看首页的错误代码描述