GET Api/Mobile/PreCadastro/GetAgendamentoAtual?_cpf={_cpf}&_dtNascimento={_dtNascimento}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
_cpf

string

Required

_dtNascimento

date

Required

Body Parameters

None.

Response Information

Resource Description

DadosAgendamentoDTO
NameDescriptionTypeAdditional information
CPF

string

None.

DataNascimento

date

None.

Nome

string

None.

DataAtendimento

date

None.

Response Formats

application/json, text/json

Sample:
{
  "CPF": "sample string 1",
  "DataNascimento": "2025-08-03T10:23:53.0739125-03:00",
  "Nome": "sample string 3",
  "DataAtendimento": "2025-08-03T10:23:53.0739125-03:00"
}

application/xml, text/xml

Sample:
<DadosAgendamentoDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GCOOP.EntityLayer.DTO.App">
  <CPF>sample string 1</CPF>
  <DataAtendimento>2025-08-03T10:23:53.0739125-03:00</DataAtendimento>
  <DataNascimento>2025-08-03T10:23:53.0739125-03:00</DataNascimento>
  <Nome>sample string 3</Nome>
</DadosAgendamentoDTO>