# place.stream.vod.listDrafts

> Published by [did:web:stream.place](https://lexicon.garden/identity/did:web:stream.place)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.vod.listDrafts)
- [Documentation](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.vod.listDrafts/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.vod.listDrafts/examples)

## Definitions

### `place.stream.vod.listDrafts`

**Type**: `query`

List the authenticated user's draft VODs, newest first.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `limit` | `integer` | No | Number of drafts to return. |
| `cursor` | `string` | No | Pagination cursor from a previous response. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cursor` | `string` | No | Pagination cursor for the next page, if more results exist. |
| `drafts` | `array` | Yes |  |

## Raw Schema

```json
{
  "id": "place.stream.vod.listDrafts",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "drafts"
          ],
          "properties": {
            "cursor": {
              "type": "string",
              "description": "Pagination cursor for the next page, if more results exist."
            },
            "drafts": {
              "type": "array",
              "items": {
                "ref": "place.stream.vod.draftDefs#draftView",
                "type": "ref"
              }
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "properties": {
          "limit": {
            "type": "integer",
            "default": 50,
            "maximum": 100,
            "minimum": 1,
            "description": "Number of drafts to return."
          },
          "cursor": {
            "type": "string",
            "description": "Pagination cursor from a previous response."
          }
        }
      },
      "description": "List the authenticated user's draft VODs, newest first."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
