{
"sucesso": true,
"mensagens": "",
"dados": [
{ "id": "1", "nome": "John Doe", "email": "johndoe@example.com" },
{ "id": "2", "nome": "Jane Smith", "email": "janesmith@example.com" }
]
}
{
"sucesso": false,
"mensagens": "Parâmetros inválidos ou erro ao processar a consulta.",
"dados": null
}
curl --location --request GET '/v2/Usuarios/Escritorios?email' \
--header 'Authorization: <api-key>'
{
"sucesso": true,
"mensagens": "string",
"dados": [
{
"id": "string",
"nome": "string",
"email": "string",
"cpf": "string"
}
]
}