# `bird sms tfn verifications list`

## Usage

```bash
bird sms tfn verifications list [flags]
```

## Description

Lists the toll-free verifications this workspace holds, newest first. Filter by `status` to separate the drafts still being filled in from the ones a carrier is holding.

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

## Examples

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

## Options

#### Pagination

| Name               | Description                                                                                                                                                                                                                                                                                                                                             |
| ------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `--ending-before`  | Cursor from the prev\_cursor or refresh\_cursor field of a previous list response. Returns items immediately before the cursor position in the current sort order. prev\_cursor returns the preceding page. refresh\_cursor anchors at the first row of that response, which on a newest-first sort is how to fetch the items that have appeared since. |
| `--limit <n>`      | Maximum number of items to return per page.                                                                                                                                                                                                                                                                                                             |
| `--order`          | Sort direction. Defaults to desc, which sorts from newest to oldest or largest to smallest, depending on the selected sort field. Possible values: asc, desc.                                                                                                                                                                                           |
| `--sort`           | Field to sort by. Possible values: created\_at.                                                                                                                                                                                                                                                                                                         |
| `--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                                                                                                                                          |
| `--sender-id`       | Return only the verifications for one sender, using the sender ID as returned by the SMS sender list. This finds a sender's verification while it is still a draft, before you submit it. |
| `--status`          | Filter by verification lifecycle state. Possible values: draft, submitted, under\_review, info\_requested, approved, rejected.                                                            |

## Related

| Name                                                                                                | Description                             |
| --------------------------------------------------------------------------------------------------- | --------------------------------------- |
| [`bird sms tfn verifications cancel`](/docs/cli/reference/sms-tfn-verifications-cancel)             | Cancel a toll-free verification         |
| [`bird sms tfn verifications create`](/docs/cli/reference/sms-tfn-verifications-create)             | Create a toll-free verification         |
| [`bird sms tfn verifications get`](/docs/cli/reference/sms-tfn-verifications-get)                   | Get a toll-free verification            |
| [`bird sms tfn verifications requirements`](/docs/cli/reference/sms-tfn-verifications-requirements) | Get what a toll-free verification needs |
| [`bird sms tfn verifications update`](/docs/cli/reference/sms-tfn-verifications-update)             | Update a toll-free verification         |