---
title: ikas Save Webhook
description: Webhook kaydeder
---

```graphql
mutation SaveWebhooks($input: WebhookInput!) {
  saveWebhooks(input: $input) { 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": "mutation SaveWebhooks($input: WebhookInput!) { saveWebhooks(input: $input) { id scope endpoint createdAt updatedAt } }",
    "variables": { "input": { "scopes": ["store/order/created"], "salesChannelIds": null, "endpoint": "https://example.com/webhook" } }
  }'
```


