# app.bivri.feed.listDrafts

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

✓ This is the authoritative definition for this NSID.

## Description

List private Draft metadata for which the authenticated member is a Party. Requires authentication and never returns Draft bytes.

## Links

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

## Definitions

### `app.bivri.feed.listDrafts`

**Type**: `query`

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `limit` | `integer` | No |  |
| `cursor` | `string` | No | Opaque identifier of the last Draft from the previous page. |

#### Output

**Encoding**: `application/json`

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

#### Errors

- **Unauthenticated**

## Raw Schema

```json
{
  "id": "app.bivri.feed.listDrafts",
  "defs": {
    "main": {
      "type": "query",
      "errors": [
        {
          "name": "Unauthenticated"
        }
      ],
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "drafts"
          ],
          "properties": {
            "cursor": {
              "type": "string",
              "maxLength": 36
            },
            "drafts": {
              "type": "array",
              "items": {
                "ref": "app.bivri.feed.defs#draftView",
                "type": "ref"
              }
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "properties": {
          "limit": {
            "type": "integer",
            "default": 50,
            "maximum": 100,
            "minimum": 1
          },
          "cursor": {
            "type": "string",
            "maxLength": 36,
            "description": "Opaque identifier of the last Draft from the previous page."
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "List private Draft metadata for which the authenticated member is a Party. Requires authentication and never returns Draft bytes."
}
```
