## List Webhook Configs

`IReadOnlyList<WebhookConfigResponse> WebhookConfigs.List(WebhookConfigListParams?parameters, CancellationTokencancellationToken = default)`

**get** `/api/v1/beta/webhook-configs`

List the webhook configurations for the current project, newest first.

### Parameters

- `WebhookConfigListParams parameters`

  - `string? organizationID`

  - `string? projectID`

### Example

```csharp
WebhookConfigListParams parameters = new();

var webhookConfigResponses = await client.WebhookConfigs.List(parameters);

Console.WriteLine(webhookConfigResponses);
```

#### Response

```json
[
  {
    "id": "id",
    "has_secret": true,
    "tenant_id": "tenant_id",
    "tenant_type": "project",
    "webhook_url": "webhook_url",
    "created_at": "2019-12-27T18:11:19.117Z",
    "updated_at": "2019-12-27T18:11:19.117Z",
    "webhook_events": [
      "batch.cancelled"
    ],
    "webhook_headers": {
      "foo": "string"
    },
    "webhook_output_format": "json"
  }
]
```
