# 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 |
| `credential_not_found` | No credential with the given client ID |
| `webhook_endpoint_not_found` | No webhook endpoint with the given ID |


## Example Response


```json
{
  "type": "https://docs.dinie.com/errors/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 `webhook_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](/en-us/apis/concepts/errors) -- Full error handling patterns and code examples