---
title: "Service: /error/report [POST]"
source: https://dev.pageseeder.com/api/services/report-error_post.html
description: "The /error/report service allows authenticated users to report system errors via email to a configurable support address. It accepts error content and stack traces as parameters and supports asynchronous email delivery for slow servers."
last_updated: 2026-09-08T13:37:34+10:00
document_type: api_endpoint
operation_id: system-POST
resource_id: system
path_template: /error/report
http_method: POST
api_category: system
implementation_version: 6.0008
api_since: 4.8008
deprecated_since: null
obsolete_since: null
api_support: experimental
cache_control: N/A
generated_at: 2026-09-02
tokens: ~274
---

# /error/report \[POST\]

## Description

Report an error to the appropriate person.

This service allows system errors to be sent by email to a configurable address. The address is not necessarily the address of an existing member and can be an address for a support person.

### Configuration

For this service to be functional, ensure that the `errorReportAddress` property is defined in the default [Group Properties](../../guide/configuration/properties/group_properties.md).

## Parameters

| Name | Description | Required | Type | Default |
| --- | --- | --- | --- | --- |
| content | The content to be reported, usually a stack trace and/or some system information at time of error  | yes | string |  |
| notify-async | Whether emails are sent asynchronously (for slow email servers) | no | boolean | `false` |

## Permission

The user must be authenticated.

## Response

The XML acknowledges that the message was sent:

```xml
<error-report report-sent="true" />
```

Or in JSON:

```json
{
  "reportSent":"true"
}
```

## Error Handling

No specific errors expected for this service.

