> ## Documentation Index
> Fetch the complete documentation index at: https://api-reference.hyperswitch.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Update Elimination Config

> Curl example for updating elimination config.

# Update Elimination Config

```bash theme={null}
curl --location "$BASE_URL/rule/update" \
  --header "$AUTH_HEADER" \
  --header "Content-Type: application/json" \
  --data '{
    "merchant_id": "merchant_demo",
    "config": {
      "type": "elimination",
      "data": {
        "bucketSize": 10,
        "eliminationThreshold": 0.15
      }
    }
  }'
```

```json theme={null}
{ "merchant_id": "merchant_demo", "config": { "type": "elimination" } }
```
