# DELETE /api/v1/billing-addresses/{billingAddress}/contacts/{contact}

> Hold the removal of a billing-address contact for confirmation

- Group: billing
- Tier: W
- Required scope: write:billing
- Docs: https://api.inleed.com/reference/billing/remove-billing-address-contact

## Description

Where invoices go is consequential: an address dropped by mistake means unpaid invoices and a suspended service. Live (2026-09-05) the model removed every other recipient on the customer's primary profile when asked to "send invoices to X" — so a removal is no longer immediate. The hold's preview names the address, its type and how many invoice recipients stay; `perform()` deletes it once the customer approves. Removes nothing on this call.

## Path parameters

- `billingAddress` — string (required)
- `contact` — string (required)

## Query parameters

- `billing_address_id` — integer (required). Minimum 1.
- `contact_id` — integer (required). Minimum 1.
- `attempt_key` — string. Idempotency key for this intent. Keep it stable across retries so a timed-out retry cannot buy the same thing twice. Up to 128 characters.

## Request

```bash
curl -X DELETE "https://mcp.inleed.com/api/v1/billing-addresses/1204/contacts/3310" \
  -H "Authorization: Bearer inl_live_…"
```

## Response · 200

```json
{
  "status": "active",
  "pendingActionId": "example.se",
  "confirmationUrl": "https://mcp.inleed.com/…",
  "expiresAt": "2026-08-30T09:12:44.000Z",
  "preview": []
}
```

## Errors

- **400**  — codes: invalid_request
- **401** No token was presented, or the token is revoked, expired or unknown. — codes: unauthorized, token_expired, token_revoked
- **403** The token lacks a required scope, or this account does not own the resource. — codes: insufficient_scope, not_owned
- **404** No such resource for this account. — codes: not_found, invoice_not_found
- **422** Validation error — codes: validation_failed
- **429** The rate limit for this token is exhausted. See `Retry-After`. — codes: rate_limited
- **500** Something went wrong on our side. The failure is logged against `requestId`. — codes: internal_error

## Related

- GET /api/v1/billing-addresses/{billingAddress}/contacts — https://api.inleed.com/reference/billing/list-billing-address-contacts
- POST /api/v1/billing-addresses/{billingAddress}/contacts — https://api.inleed.com/reference/billing/add-billing-address-contact
- GET /api/v1/billing-addresses/{billingAddress} — https://api.inleed.com/reference/billing/get-billing-address
- GET /api/v1/billing-addresses — https://api.inleed.com/reference/billing/list-billing-addresses

