# Retrieve comment settings

`GET https://api.cademi.com.br/api/v3/settings/support/comments`

Operation ID: `settings.support.comments.get` · API v3

Returns the lesson comment settings of the account: availability, moderation, tags, texts displayed to users, sort order, and posting limits.

The response includes an `ETag` representing the current revision. Send this value in the `If-Match` header when updating these settings to avoid overwriting a newer version.

Required permissions: `settings.read`.

## Responses

### 200

Returns the lesson comment settings.

Body: `data`: SettingsSupportComments.

Fields of SettingsSupportComments:

| Field | Type | Required | Description |
|---|---|---|---|
| `cooldown_minutes` | integer | yes |  |
| `defaults` | object | yes |  |
| `enabled` | boolean | yes |  |
| `min_length` | integer | yes |  |
| `moderation_enabled` | boolean | yes |  |
| `object` | string, one of `settings` | yes |  |
| `open_in_new_tab` | boolean | yes |  |
| `placeholder` | string | yes |  |
| `revision` | string | yes |  |
| `sort` | string, one of `newest`, `oldest` | yes |  |
| `tags_enabled` | boolean | yes |  |
| `title` | string | yes |  |

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

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