---
title: "Service: /groups/{group}/error/report [POST]"
source: https://dev.pageseeder.com/api/services/report-group-error_post.html
description: "POST endpoint for reporting errors within a group context. Sends error details via email to a configurable address. Requires authentication and group-level errorReportAddress configuration."
last_updated: 2026-09-08T13:37:34+10:00
document_type: api_endpoint
operation_id: system-POST
resource_id: system
path_template: /groups/{group}/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: ~322
---

# /groups/\{group\}/error/report \[POST\]

## Description

Reports an error to the appropriate person when they occur within the context of a group.

This service allows 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.

To report errors which occur outside a group use the [Service: /error/report \[POST\]](report-error_post.md) instead.

### Configuration

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

## 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.

