# Loan created Fires when the loan is created via POST /loans from an accepted offer. Includes the loan, offer, and customer IDs, as well as the requested amount and number of installments. The loan starts with processing status. Use it to register the loan in your system. Endpoint: POST loan.created Version: 2026-03-01 Security: bearerAuth ## Request fields (application/json): - `type` (string, required) Event type identifier Enum: "loan.created" - `timestamp` (string, required) When the event occurred - `data` (object, required) - `data.id` (string, required) - `data.credit_offer_id` (string, required) - `data.customer_id` (string, required) - `data.status` (string, required) Enum: "processing" - `data.requested_amount` (string, required) Decimal encoded as a string with exactly 2 decimal places (BRL). - `data.number_of_installments` (integer, required) ## Response 200 fields