跳到主要内容

金融机构查询

Request

ENDPOINT
/financial_institution
MÉTODO
GET

QUERY PARAMS

字段描述
ispb_number金融机构 ISPB 号。
name金融机构名称
compe_number金融机构 Compe 号。
min_str_start_date最早操作开始日期。
max_str_start_date最晚操作开始日期。
page_number当前查询的页码
page_size每页结果数量

Response

status:

200

Response Body: 带分页的查询
{
"data": [
{
"compe_number": "001",
"created_at": "2019-06-19T17:31:51",
"is_active": true,
"is_compe_participant": true,
"ispb_number": "00000000",
"name": "Banco do Brasil S.A.",
"str_start_date": "2002-04-22"
},
{
"compe_number": "070",
"created_at": "2019-06-19T17:31:51",
"is_active": true,
"is_compe_participant": true,
"ispb_number": "00000208",
"name": "Banco de Brasília S.A.",
"str_start_date": "2002-04-22"
}
],
"pagination": {
"current_page": 1,
"next_page": 2,
"rows_per_page": 2,
"total_pages": 115,
"total_rows": 230
}
}

Response Body: 不带分页的查询
{
"94968518": {
"compe_number": "289",
"is_active": true,
"is_compe_participant": false,
"ispb_number": "94968518",
"name": "Decyseo Corretora de Câmbio Ltda.",
"str_start_date": "2019-03-14"
},
"00000000": {
"compe_number": "001",
"is_active": true,
"is_compe_participant": true,
"ispb_number": "00000000",
"name": "Banco do Brasil S.A.",
"str_start_date": "2002-04-22"
}
}

信息

请求参数均为可选项,若未指定任何参数,响应将返回所有机构(不分页)。