curl --request POST \
--url https://api.bmpdigital.moneyp.dev.br/Bureau/ConsultarAutodata \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--header 'IdempotencyKey: <idempotencykey>' \
--data '{
"consulta": {
"chassi": "<string>",
"cnpjLoja": "<string>"
}
}'
{
"msg": "<string>",
"messages": [
{
"messageType": 1,
"code": "<string>",
"context": "<string>",
"description": "<string>",
"field": "<string>"
}
],
"hasError": true,
"falha": true,
"json": "<string>"
}
curl --request POST \
--url https://api.bmpdigital.moneyp.dev.br/Bureau/ConsultarAutodata \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--header 'IdempotencyKey: <idempotencykey>' \
--data '{
"consulta": {
"chassi": "<string>",
"cnpjLoja": "<string>"
}
}'
{
"msg": "<string>",
"messages": [
{
"messageType": 1,
"code": "<string>",
"context": "<string>",
"description": "<string>",
"field": "<string>"
}
],
"hasError": true,
"falha": true,
"json": "<string>"
}
Show Planilha de dados mockados
Show Exemplo de retorno completo
"json": "<string>"
o retorno do Bureau vem de forma serializada, sendo necessário deserializar para melhor visualização. Aqui está um exemplo do retorno deserializado que vem no campo "json":
.{
\"OperationCode\": \"516897690322306689\",
\"StatusCode\": \"0100\",
\"Message\": \"OK \",
\"StartTime\": \"2025-07-08T11:04:22.347+0000\",
\"EndTime\": \"2025-07-08T11:04:30.368+0000\",
\"Result\": {
\"Result\": \"OK\",
\"Outputs\": [
{
\"Key\": \"CALC_AUTODATA_RET_CNAE_OBRIG\",
\"Value\": \"INDEFINIDO\",
\"Type\": null
},
{
\"Key\": \"CALC_AUTODATA_RET_COD_RETORNO\",
\"Value\": \"VEÍCULO ESTÁ CADASTRADO NO RENAVE E NÃO ESTÁ NO NOME DA REVENDA\",
\"Type\": null
},
{
\"Key\": \"CALC_AUTODATA_RET_DT_ATUAL\",
\"Value\": \"\",
\"Type\": null
},
{
\"Key\": \"CALC_AUTODATA_RET_FLAG_ESTOQUE\",
\"Value\": \"N\",
\"Type\": null
},
{
\"Key\": \"CALC_AUTODATA_RET_FLAG_RENAVE\",
\"Value\": \"S\",
\"Type\": null
},
{
\"Key\": \"CALC_AUTODATA_RET_ID_RETORNO\",
\"Value\": \"3\",
\"Type\": null
},
{
\"Key\": \"CALC_AUTODATA_RET_MATRIZ_FILIAL_GRP_ECON\",
\"Value\": \"INDEFINIDO\",
\"Type\": null
},
{
\"Key\": \"CALC_AUTODATA_RET_STATUS_ESTOQUE\",
\"Value\": \"SOLICITADO\",
\"Type\": null
},
{
\"Key\": \"PROP_CHASSI\",
\"Value\": \"9NNTSSVTNDZ5T8531\",
\"Type\": null
},
{
\"Key\": \"PROP_CNPJ_LOJA\",
\"Value\": \"03785389000116\",
\"Type\": null
},
{
\"Key\": \"PROP_ID_CLIENT\",
\"Value\": \"6065\",
\"Type\": null
},
{
\"Key\": \"VI_NEUROTECH_USUARIO\",
\"Value\": \"bmpautodata\",
\"Type\": null
}
]
}
}
Informe o token
Success
The response is of type object
.
Esta página foi útil?