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

# DELETE /ipAddress/{merchantID} — Remove IP address restriction

> Delete the IP address restriction for a merchant. After deletion, API key requests from any IP address will be accepted without an IP-based check.

Use this endpoint to remove the IP address restriction currently configured for a merchant. Once deleted, API key authentication for that merchant will no longer enforce an IP-based check, accepting requests from any origin.

<Warning>
  Removing an IP address restriction reduces the security of your API key integration. Only do this if you have other controls in place, or if your server's IP is subject to change. Consider regenerating your API key after removing an IP restriction if the previous key may have been exposed.
</Warning>

<Info>
  This endpoint requires Bearer token authentication. API key authentication is not accepted.
</Info>

## Path parameters

<ParamField path="merchantID" type="string" required>
  The UUID of the merchant whose IP address restriction you want to remove.
</ParamField>

## Response

Returns `204 No Content` on success. No response body is returned.

<RequestExample>
  ```bash cURL theme={null}
  curl --request DELETE \
    --url https://api.iterapay.com/ipAddress/b0fcc813-a7ce-4bbc-932f-dbef6f59ca7f \
    --header 'Authorization: Bearer <token>'
  ```
</RequestExample>

<ResponseExample>
  ```text 204 theme={null}
  (no content)
  ```
</ResponseExample>
