# Loan active Fires when the disbursement is confirmed and the loan enters the repayment phase. Includes the requested amount (requested_amount) and the net amount received (net_amount). Use it to confirm to the customer that the funds have been credited and present the installment schedule. Endpoint: POST loan.active Version: 2026-03-01 Security: bearerAuth ## Request fields (application/json): - `type` (string, required) Event type identifier Enum: "loan.active" - `timestamp` (string, required) When the event occurred - `data` (object, required) - `data.id` (string, required) - `data.status` (string, required) Enum: "active" - `data.requested_amount` (string, required) Decimal encoded as a string with exactly 2 decimal places (BRL). - `data.net_amount` (string, required) Decimal encoded as a string with exactly 2 decimal places (BRL). ## Response 200 fields