Skip to content
Last updated

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

CodeDescription
customer_not_foundNo customer with the given ID
credit_offer_not_foundNo credit offer with the given ID
loan_not_foundNo loan with the given ID
simulation_not_foundNo simulation with the given ID
endpoint_not_foundNo webhook endpoint with the given ID

Example Response

{
  "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