# app.bivri.support.listFaqs

> Published by [lexicons.bivri.app](https://lexicon.garden/identity/did:plc:uqat5a7hrbww3snbbinxgwah)

✓ This is the authoritative definition for this NSID.

## Description

List published FAQ entries, paginated by cursor. Authentication is not required.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:uqat5a7hrbww3snbbinxgwah/app.bivri.support.listFaqs)
- [Documentation](https://lexicon.garden/lexicon/did:plc:uqat5a7hrbww3snbbinxgwah/app.bivri.support.listFaqs/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:uqat5a7hrbww3snbbinxgwah/app.bivri.support.listFaqs/examples)

## Definitions

### `app.bivri.support.listFaqs`

**Type**: `query`

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `limit` | `integer` | No |  |
| `cursor` | `string` | No |  |
| `categoryId` | `string` | No |  |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `faqs` | `array` | Yes |  |
| `cursor` | `string` | No |  |

#### Errors

- **InvalidCursor**
- **InvalidLimit**
- **InvalidCategoryId**

## Raw Schema

```json
{
  "id": "app.bivri.support.listFaqs",
  "defs": {
    "main": {
      "type": "query",
      "errors": [
        {
          "name": "InvalidCursor"
        },
        {
          "name": "InvalidLimit"
        },
        {
          "name": "InvalidCategoryId"
        }
      ],
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "faqs"
          ],
          "properties": {
            "faqs": {
              "type": "array",
              "items": {
                "ref": "app.bivri.support.contentDefs#faqView",
                "type": "ref"
              }
            },
            "cursor": {
              "type": "string"
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "properties": {
          "limit": {
            "type": "integer",
            "default": 50,
            "maximum": 100,
            "minimum": 1
          },
          "cursor": {
            "type": "string"
          },
          "categoryId": {
            "type": "string"
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "List published FAQ entries, paginated by cursor. Authentication is not required."
}
```
