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": "2025-06-16T16:18:54.5056375-03:00", "EstadoCivil": 2, "Id": "5a70b526-3fc3-49cc-b709-538a4b65ab84", "Nome": "sample string 4", "Sexo": 5, "DataCriacao": "2025-06-16T16:18:54.5066238-03:00", "DataAlteracao": "2025-06-16T16:18:54.5066238-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>2025-06-16T16:18:54.5066238-03:00</DataAlteracao> <DataCriacao>2025-06-16T16:18:54.5066238-03:00</DataCriacao> <DataNascimento>2025-06-16T16:18:54.5056375-03:00</DataNascimento> <EstadoCivil>2</EstadoCivil> <Id>5a70b526-3fc3-49cc-b709-538a4b65ab84</Id> <Nome>sample string 4</Nome> <Sexo>5</Sexo> </Pessoa>