curl --location --request POST 'https://sandbox.api.trustic.com.br/antifraud/v1/persons' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"cpf": "cpf",
"name": "nome",
"email": "email",
"phone": "telefone",
"birth_date": "data_nascimento",
"mother_name": "nome_mae",
"gender": "F",
"nationality": "BRA",
"address": {
"zipcode": "cep",
"number": "numero",
"state": "estado",
"city": "cidade",
"district": "bairro",
"street": "rua",
"complement": "complemento"
}
}'