# List

Launch stage: Beta

`GET /api/2.0/postgres/{parent=projects/*/branches/*/databases/*}/cdf-configs`

List all CDF configurations for a Lakebase database. Each configuration maps
 a Postgres schema to a Unity Catalog schema where the change data feed is
 materialized.

API scopes: postgres

## Path parameters

- `parent` (string, optional)
  The parent database to list CdfConfigs for.
   Format: projects/{project}/branches/{branch}/databases/{database}

## Query parameters

- `page_size` (int32, optional)
  Maximum number of CdfConfigs to return.
- `page_token` (string, optional)
  Pagination token returned by a previous ListCdfConfigs call. Empty on the
   first page.

## Returns

Returns a list of CdfConfig objects.

## Response

```json
{
  "cdf_configs": [
    {
      "name": "string",
      "catalog": "string",
      "schema": "string",
      "create_time": "string",
      "cdf_config_id": "string",
      "postgres_schema": "string"
    }
  ],
  "next_page_token": "string"
}
```

