查询项目财务披露信息
使用场景:使用分配的GY_APPID查询已授权的项目财务披露数据列表
调用凭证: 应用签名
请求地址: https://test-oapi.gongyi.qq.com/api/opf_proj_qry/GetProjFinanceList
请求方法: POST ( HTTPS )
请求参数:
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
project_no | string | 是 | 要查询的项目编号;如:"13342" ;如果机构没有此项目的权限,查询会返回项目未授权错误。 |
page_index | int | 否 | 数据分页页码(从1开始);默认:1 ;小于等于0时,会使用默认值 |
page_size | int | 否 | 数据分页大小(>0 && <100);默认:10 ;小于等于0时,会使用默认值 |
返回参数:
参数 | 类型 | 说明 |
---|---|---|
code | int | 返回码:0表示成功,其他值表示错误,请参考错误码说明 |
msg | string | 错误信息 |
data | object | 返回数据 |
data内容:
参数 | 类型 | 说明 |
---|---|---|
total | int | 财务披露数据总记录数 |
list | array | 财务披露信息列表 |
list[].payout_total | string | 支出总额(单位:分) |
list[].period_from | string | 披露周期-开始时间(格式:yyyy-mm-dd ) |
list[].period_to | string | 披露周期-结束时间(格式:yyyy-mm-dd ) |
请求示例:
{
"project_no":"13342",
"page_size": 10,
"page_index": 2
}
返回示例:
{
"code": 0,
"msg": "Success",
"op_time": 1650812345,
"trace_id": "1a2b3c4d5e6f7g8h1a2b3c4d5e6f7g8h",
"data": {
"list": [{
"payout_total":"300",
"period_from":"2019-01-01",
"period_to":"2019-04-30"
},{
"payout_total":"10000",
"period_from":"2019-06-05",
"period_to":"2019-09-02"
},{
"payout_total":"1000",
"period_from":"2018-04-11",
"period_to":"2018-12-31"
}]
}
}
1: 2024年7月30日 fix文档错误;字段名data
-> list