Consulta responsável por retornar dados através do telefone.
Autenticação:
Tipo de autenticação: Bearer Token
Type: POST
Variáveis:
{endpoint} = pf-localizacaonome
BODY:
{link} = pf-localizacaonome
{cpf} = string
{nome} = string
{dataNascimento} = date (1990-08-31)
{telefoneDDD} = string
{telefoneNumero} = string
{sexo} = string (M ou F)
{nomeMae} = string
{nomePai} = string
curl -X POST https://api.apifull.com.br/api/{endpoint} \
-H "Authorization: Bearer {SEU_TOKEN}" \
-H "Accept: ." \
-H "Content-Type: application/json" \
-d '{
"link":"pf-localizacaonome",
"cpf":"",
"nome":"",
"dataNascimento":"1990-08-31",
"telefoneDDD":"",
"telefoneNumero":"",
"sexo":"M",
"nomeMae":"",
"nomePai":""
}'
Response (200):
{
"status": "sucesso",
"API Full": "https://doc.apifull.com.br",
"dados": {
"parametros": {
"nome": "%",
"dataNascimento": "1990-08-31",
"sexo": "M"
},
"pessoas": [
{
"cpf": "997368***",
"nome": "ANDRE CARDOSO",
"nomeMae": "ANTONIA SANTOS",
"nomePai": null,
"dataNascimento": "1990-08-31",
"sexo": "M"
},
{
"cpf": "3812285**",
"nome": "GLEISON CARDOSO",
"nomeMae": "ROSEMARY DA SILCA",
"nomePai": null,
"dataNascimento": "1990-08-31",
"sexo": "M"
}
]
},
"aux": ""
}
Response (400):
{
"status": "error",
"message": "Token inválido!"
}