# List questions across all products

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

Operation ID: `questions.list` · API v3

Returns the support queue of questions across all products in the account that are accessible with the current credentials. Results are paginated with a cursor.

By default, only questions awaiting a reply (`status=open`) are returned. Use `status=answered` to list answered questions instead.

This collection never includes reply drafts or the `has_draft` field, even when the credentials have the `questions.read_private` permission.

Required permissions: `questions.read`.

## Parameters

| Name | In | Type | Required | Description |
|---|---|---|---|---|
| `limit` | query | integer | no |  |
| `cursor` | query | string | no |  |
| `sort` | query | string, one of `id`, `-id` | no |  |
| `status` | query | string, one of `open`, `answered` | no |  |

## Responses

### 200

Returns a page of questions.

### 400

The cursor is invalid or 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
