# List recent user activity

`GET https://api.cademi.com.br/api/v3/reports/activity`

Operation ID: `reports.activity.list` · API v3

Returns recent user activity, such as comments, questions, and tickets, within the requested date range.

This report does not support cursor pagination. `from` and `to` are required, `from` must not be later than `to`, and the range cannot exceed 90 days. The response contains at most `limit` entries (maximum and default: 100).

The `email`, `document`, and `phone` fields are included only when the credentials also have the `users.read_personal` permission.

Required permissions: `reports.read`.

## Parameters

| Name | In | Type | Required | Description |
|---|---|---|---|---|
| `from` | query | string (date) | yes |  |
| `to` | query | string (date) | yes |  |
| `limit` | query | integer | no |  |

## Responses

### 200

Returns the activity entries for the requested date range.

Body: `data`: array of ReportRow.

Fields of ReportRow:

| Field | Type | Required | Description |
|---|---|---|---|
| `object` | string, one of `report_row` | yes |  |
| `report` | string | yes | ID of the report in the report catalog. |

### 400

The request contains an unsupported query parameter.

Body: Error.

### 401

The credential is missing, malformed, expired, or revoked.

Body: Error.

### 403

The current credentials do not have the permission required by this operation.

Body: Error.

### 422

The request body or query parameters failed validation.

Body: ValidationFailed.

Full schema: https://cademi.dev/openapi/v3.json
