## Delete Subscription

Remove all of your game action events subscriptions. After deletion, you will stop receiving webhook notifications for every previously subscribed event. A successful request returns `204 No Content`.

**API Call Sample:**

```shell curl
curl -i -X DELETE \
  -u '<username>:<password>' \
  https://asia.stage.rubyplay.io/api/v1/subscriptions/game-action-events
```

```json 401 application/json
{
  "code": "NOT_AUTHORIZED",
  "message": "Authentication failed",
  "timestamp": "2026-01-25T14:30:00Z",
  "path": "/api/v1/subscriptions/game-action-events"
}
```

```json 403 application/json
{
  "code": "INSUFFICIENT_SCOPE",
  "message": "Insufficient scope to access this resource. Required: subscription:delete",
  "timestamp": "2026-01-25T14:30:00Z",
  "path": "/api/v1/subscriptions/game-action-events"
}
```

```json 500 application/json
{
  "code": "UNKNOWN_ERROR",
  "message": "Something went wrong",
  "timestamp": "2026-01-25T14:30:00Z",
  "path": "/api/v1/subscriptions/game-action-events"
}
```

```json 504 application/json
{
  "code": "TIMEOUT",
  "message": "The server did not respond within the expected time",
  "timestamp": "2026-01-25T14:30:00Z",
  "path": "/api/v1/subscriptions/game-action-events"
}
```