# `bird contact-properties list`

## Usage

```bash
bird contact-properties list [flags]
```

## Description

List the workspace's contact properties as a cursor page, newest first. Archived properties are included, marked by their archived flag.

Returns a paginated JSON envelope; narrow with the filters below and page with --limit and --starting-after.

## Examples

```bash
bird contact-properties list
bird contact-properties list | jq -r '.data[].id'
bird contact-properties list --limit 50 --starting-after <cursor>
```

## Options

#### Pagination

| Name               | Description                                                                                                                                    |
| ------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------- |
| `--ending-before`  | Cursor from the prev_cursor field of a previous list response. Returns items immediately before the cursor position in the current sort order. |
| `--limit <n>`      | Maximum number of items to return per page.                                                                                                    |
| `--starting-after` | Cursor from the next_cursor field of a previous list response. Returns items immediately after the cursor position in the current sort order.  |

#### Filters

| Name                | Description                                      |
| ------------------- | ------------------------------------------------ |
| `--response-schema` | Print the fields this command returns, then exit |

## Related

| Name                                                                                    | Description                                 |
| --------------------------------------------------------------------------------------- | ------------------------------------------- |
| [`bird contact-properties archive`](/docs/cli/reference/contact-properties-archive)     | Archive a contact property                  |
| [`bird contact-properties create`](/docs/cli/reference/contact-properties-create)       | Define a custom contact property.           |
| [`bird contact-properties get`](/docs/cli/reference/contact-properties-get)             | Get a contact property                      |
| [`bird contact-properties unarchive`](/docs/cli/reference/contact-properties-unarchive) | Unarchive a contact property                |
| [`bird contact-properties update`](/docs/cli/reference/contact-properties-update)       | Update a contact property's fallback value. |