---
title: List Webhook
description: Kayıtlı webhook'ları listeler
---

```graphql
query ListWebhook { listWebhook { id scope endpoint createdAt updatedAt } }
```

### cURL

```bash
curl -X POST 'https://api.myikas.dev/api/v2/admin/graphql' \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer YOUR_TOKEN' \
  --data-raw '{
    "query": "query ListWebhook { listWebhook { id scope endpoint createdAt updatedAt } }",
    "variables": {}
  }'
```


