# com.atiproto.payment.item.list

> Published by [atiproto.com](https://lexicon.garden/identity/did:plc:4x5dcv6u4wlkjcssto7f22nu)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:4x5dcv6u4wlkjcssto7f22nu/com.atiproto.payment.item.list)
- [Documentation](https://lexicon.garden/lexicon/did:plc:4x5dcv6u4wlkjcssto7f22nu/com.atiproto.payment.item.list/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:4x5dcv6u4wlkjcssto7f22nu/com.atiproto.payment.item.list/examples)

## Definitions

### `com.atiproto.payment.item.list`

**Type**: `query`

List items sent by the authenticated user

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `limit` | `integer` | No | Results per page (1-100, default: 50) |
| `cursor` | `string` | No | Pagination cursor |
| `subject` | `string` (did) | No | Optional: only return items sent to this recipient DID |
| `recordUri` | `string` (at-uri) | No | Optional: only return items for this specific record |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `items` | `array` | Yes |  |
| `cursor` | `string` | No | Pagination cursor for next page |

## Raw Schema

```json
{
  "id": "com.atiproto.payment.item.list",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "items"
          ],
          "properties": {
            "items": {
              "type": "array",
              "items": {
                "ref": "com.atiproto.item#view",
                "type": "ref"
              }
            },
            "cursor": {
              "type": "string",
              "maxLength": 512,
              "description": "Pagination cursor for next page"
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "properties": {
          "limit": {
            "type": "integer",
            "default": 50,
            "maximum": 100,
            "minimum": 1,
            "description": "Results per page (1-100, default: 50)"
          },
          "cursor": {
            "type": "string",
            "maxLength": 512,
            "description": "Pagination cursor"
          },
          "subject": {
            "type": "string",
            "format": "did",
            "description": "Optional: only return items sent to this recipient DID"
          },
          "recordUri": {
            "type": "string",
            "format": "at-uri",
            "description": "Optional: only return items for this specific record"
          }
        }
      },
      "description": "List items sent by the authenticated user"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
