> For the complete documentation index, see [llms.txt](https://docs.senmo.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.senmo.io/topics/errors.md).

# Errors

When an error occurs, Senmo provides an object containing detailed information to help identify the issue. Below is a list of frequently encountered error codes.

| Error Code           | Description                                       |
| -------------------- | ------------------------------------------------- |
| parameter\_invalid   | The value provided for the parameter is invalid   |
| parameter\_missing   | No value has been provided for the parameter      |
| resource\_not\_found | The resource couldn't be found for the identifier |

```json
{
  "errors": {
    "code": "resource_not_found",
    "message": "Resource not found",
    "parameter": "id"
  }
}
```
