const onboardToSavings = async (userId) => {
// Verificar nivel KYC del usuario
const user = await getUser(userId);
if (user.accessLevel === 'L0') {
throw new Error('Usuario debe completar KYC básico primero');
}
// Crear cuenta de ahorro
const savings = await fetch('/api/v2/savings', {
method: 'POST',
headers: {
'Authorization': `Bearer ${token}`,
'Content-Type': 'application/json'
},
body: JSON.stringify({
userId: userId,
acceptedTermsAndConditions: true
})
}).then(r => r.json());
console.log('Cuenta de ahorro creada:', savings.id);
// Obtener instrucciones de depósito
const achInstructions = await fetch(
`/api/v2/savings/${savings.id}/deposit-instructions/ACH`,
{
headers: {
'Authorization': `Bearer ${token}`
}
}
).then(r => r.json());
return {
savingsAccountId: savings.id,
depositInstructions: achInstructions
};
};