# Not Found The requested resource does not exist. The ID provided does not match any record, or the endpoint path is incorrect. **HTTP Status:** `404 Not Found` ## Error Codes | Code | Description | | --- | --- | | `customer_not_found` | No customer with the given ID | | `credit_offer_not_found` | No credit offer with the given ID | | `loan_not_found` | No loan with the given ID | | `simulation_not_found` | No simulation with the given ID | | `endpoint_not_found` | No webhook endpoint with the given ID | ## Example Response ```json { "type": "https://api.dinie.com.br/errors/customer_not_found", "title": "Not Found", "status": 404, "detail": "No customer found with ID cus_01H8INVALID.", "code": "customer_not_found" } ``` ## How to Resolve - Verify the resource ID is correct and was not truncated or modified. - Confirm the resource exists in the environment you are targeting (sandbox vs. production). - For `endpoint_not_found`, list your webhook endpoints with `GET /webhooks/endpoints` to find valid IDs. - If the resource was recently created, allow a moment for propagation and retry. ## See Also - [Error Handling guide](/apis/concepts/errors) -- Full error handling patterns and code examples