---
title: "Delete Customer IP"
description: "Deletes a customer IP."
---

`DELETE /api/customer-ips/:customerIpPublicId`

Notes:

- Readonly users and global supporters cannot delete customer IPs.

## Example (cURL)

```bash
BASE_URL="https://uptimeify.io"
TOKEN="<your-api-token>"

curl -X DELETE "$BASE_URL/api/customer-ips/11111111-1111-4111-8111-111111111111" \
  -H "Authorization: Bearer $TOKEN"
```

## Example Response

```json
{ "success": true }
```

## Common errors

- `400 Invalid IP identifier` when `:customerIpPublicId` is neither a valid UUID nor a legacy numeric ID
- `401 Unauthorized` when you are not logged in
- `403 Forbidden` for readonly/global supporter users, or when you cannot access the customer
- `404 IP not found` when the IP does not exist

