NATURAL (persona física) o LEGAL (persona jurídica/empresa).first_name, last_name, document_type, document_numbercompany_name, tax_id (RUT de la empresa)email: Correo electrónico (requerido)phone: Teléfono (requerido)person_type: NATURAL o LEGAL (requerido)${person_id} para uso posterior. También puedes usar ${owner_id} si esta persona será propietaria de una cuenta.curl --location --request POST 'https://api-preview.fidi.money/fidix/v1/persons' \
--header 'X-Organization-ID: 00000000-0000-0000-0000-000000000001' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"person_type": "NATURAL",
"email": "cliente1@fidi.cl",
"phone": "+56912345678",
"document_type": "RUT",
"document_number": "11223344-5",
"first_name": "Ana",
"last_name": "Gómez",
"date_of_birth": "1990-05-15",
"gender": "FEMALE",
"occupation": "Ingeniera"
}'{
"data": {
"id": "2g9h7e60-4d9c-6f4c-c4g3-1f1c8d5h3c45",
"organization_id": "00000000-0000-0000-0000-000000000001",
"parent_person_id": null,
"person_type": "NATURAL",
"email": "cliente1@fidi.cl",
"phone": "+56912345678",
"document_type": "RUT",
"document_number": "11223344-5",
"status": "active",
"first_name": "Ana",
"last_name": "Gómez",
"date_of_birth": "1990-05-15",
"gender": "FEMALE",
"occupation": "Ingeniera",
"created_at": "2025-01-10T12:00:00Z",
"updated_at": "2025-01-10T12:00:00Z"
},
"metadata": {
"trace_id": "",
"timestamp": ""
}
}