GET coreapi/v1/pessoa/GetTopPessoasByNomePessoa?pesNome={pesNome}&top={top}
Seleciona pessoas pelo nome.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| pesNome | Nome da pessoa |
Define this parameter in the request URI. |
| top | Quantidade de itens no retorno |
Define this parameter in the request URI. |
Response Information
Lista de pessoas
Response body formats
application/json, text/json
Sample:
{
"DataNascimento": "2026-05-26T15:40:37.7136118-03:00",
"EstadoCivil": 2,
"Id": "19f943ee-e614-45f8-8465-a9e4394f0a8e",
"Nome": "sample string 4",
"Sexo": 5,
"DataCriacao": "2026-05-26T15:40:37.7136118-03:00",
"DataAlteracao": "2026-05-26T15:40:37.7136118-03:00"
}
application/xml, text/xml
Sample:
<Pessoa xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CoreSSO.API.Model"> <DataAlteracao>2026-05-26T15:40:37.7136118-03:00</DataAlteracao> <DataCriacao>2026-05-26T15:40:37.7136118-03:00</DataCriacao> <DataNascimento>2026-05-26T15:40:37.7136118-03:00</DataNascimento> <EstadoCivil>2</EstadoCivil> <Id>19f943ee-e614-45f8-8465-a9e4394f0a8e</Id> <Nome>sample string 4</Nome> <Sexo>5</Sexo> </Pessoa>