# DELETE /api/v1/billing/payment-methods/cards/{card}

> Hold a saved-card removal for confirmation

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

## Description

Confirms the `card_id` is one of the caller's saved cards, then returns `{status:"confirmation_required", confirmationUrl, …}` naming the card. It removes nothing on this call. Get the id from `list_payment_methods`.

## Path parameters

- `card` — string (required)

## Query parameters

- `card_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/payment-methods/cards/example.se" \
  -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/payment-methods — https://api.inleed.com/reference/billing/list-payment-methods
- POST /api/v1/billing/payment-methods/cards/setup-link — https://api.inleed.com/reference/billing/get-add-card-link

