Skip to main content

Investor Query by Filters

This endpoint allows querying investors registered in the system using document number (CNPJ) or Name.


Request

ENDPOINT
/investor_management/investor
METHOD
GET

Query Params

FieldTypeDescriptionRequired
document_numberstringInvestor document number.No
namestringInvestor name.No
pageintegerCurrent page of the query.No
rows_per_pageintegerNumber of records per page.No

Response

STATUS
200
Response Body
{
"data": [
{
"investor_key": "495ae701-5c38-49b1-b517-a3b910fe8d8f",
"name": "Empresa Exemplo S.A.",
"document_number": "12.345.678/0001-95",
"status": "in_filling"
}
],
"pagination": {
"current_page": 1,
"next_page": null,
"rows_per_page": 100,
"total_pages": 1,
"total_rows": 1
}
}

Response Body Params

FieldTypeDescription
datalistResults listSimplified Investor Object
paginationobjectPagination dataPagination Object

Simplified Investor Object

FieldTypeDescriptionMax Characters
investor_keystringUnique investor identifier (UUID v4).36
namestringFull investor name.255
document_numberstringInvestor document number (CNPJ).14
statusstringCurrent investor status.status enumerators

status enumerators

EnumDescription
in_fillingIn filling
in_analysisUnder analysis
canceledCanceled
approvedApproved
reprovedRejected
expiredExpired

Pagination Object

FieldTypeDescription
current_pageintegerCurrent page of the query.
next_pageintegerNext page, if it exists.
rows_per_pageintegerNumber of records per page.
total_pagesintegerTotal number of pages.
total_rowsintegerTotal number of records found.