跳到主要内容

分页查询投资者数据


Introduction

此功能允许通过可选筛选条件(证件号码、状态和姓名)列出投资者,并支持分页。

Input / Output

无请求体。筛选条件通过 query string 传递,全部为可选。

输出将返回符合所提供筛选条件的投资者列表。

Request

ENDPOINT
/investor_registry/investors
MÉTODO
GET
STATUS
200

Query Params

所有参数均为可选

Param类型默认值描述
document_numberstringNone按完整证件号码筛选
statusstringNone按状态筛选
namestringNone按姓名筛选
limitint100每页条数(最小 0,最大 500
pageint0页码;偏移量按 page * limit 计算

Response

Response Body
{
"data": [
{
"name": "investidor 1",
"status": "approved",
"person_type": "natural_person",
"investor_key": "UUID v4",
"email": "investidor1@exemplo.com",
"phone": "11999990001",
"distributor": {
"distributor_key": "UUID v4",
"name": "Distribuidora XYZ",
"document_number": "00000000000191",
"registry_configuration": {}
}
},
{
"name": "investidor 2",
"status": "pending",
"person_type": "natural_person",
"investor_key": "UUID v4",
"email": "investidor2@exemplo.com",
"phone": "11999990002",
"distributor": {
"distributor_key": "UUID v4",
"name": "Distribuidora XYZ",
"document_number": "00000000000191",
"registry_configuration": {}
}
}
],
"limit": 50,
"page": 0,
"is_last_page": true
}

Response Params

字段类型描述
dataarrayInvestor 对象列表
limitint查询中使用的每页条数
pageint返回的页码
is_last_pageboolean是否为结果的最后一页

Investor

字段类型描述
investor_keystring投资者的唯一标识键
namestring投资者姓名(或公司名称)
statusstring投资者的当前状态
person_typestring人员类型(natural_personlegal_person
emailstring投资者的联系邮箱
phonestring投资者的联系电话
distributorobjectDistributor 对象

Distributor

字段类型描述
distributor_keystring分销商的唯一标识键
namestring分销商名称
document_numberstring分销商的 CNPJ
registry_configurationobject分销商的注册配置