# Resource not found

Resolve resource not found errors.

The requested resource does not exist, or could not be found for the given application or workspace.

Verify the resource identifier in the request before retrying.

## Response

All error responses follow the [Problem Details (RFC 9457)](/reference/api/overview#errors) format. The `type`, `title`, `status`, and `detail` fields are always present, while `instance` may be omitted depending on the API.

Here is an example of the response returned for this error:

```json
{
  "type": "https://croct.help/api/general/resource-not-found",
  "title": "Resource not found.",
  "status": 404,
  "detail": "Event with ID '792ebe4f-e49c-4d3c-851c-cac14a1486f9' does not exist.",
  "instance": "/events/792ebe4f-e49c-4d3c-851c-cac14a1486f9",
  "resourceType": "Event",
  "resourceId": "792ebe4f-e49c-4d3c-851c-cac14a1486f9"
}
```

The response includes the following additional fields:

- `resourceType`: `string`

  The type of the resource that was not found, such as `Event`, `Session`, or `User`.

- `resourceId`: `string`

  The ID of the resource that was not found.
