> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hyperlane.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# Remove IGP Rule

Remove existing Interchain Gas Payment (IGP) rules.

<Note>
  This endpoint is only available when gas enforcers are configured.
</Note>

<ParamField body="index" type="number" required>
  Index of the IGP rule to remove
</ParamField>

<RequestExample>
  ```bash curl theme={null}
  curl -X DELETE "http://localhost:9090/igp_rules/1"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('http://localhost:9090/igp_rules/1', {
    method: 'DELETE',
  });
  ```

  ```python Python theme={null}
  import requests

  response = requests.delete('http://localhost:9090/igp_rules/1')
  ```
</RequestExample>
