> For the complete Lynkow documentation index in agent-friendly format, see [llms.txt](/llms.txt).

# Delete the current customer's address

**Publié le** : 2026-08-19
**Catégorie** : Commerce

## `DELETE /customers/me/addresses/:id`

**Delete the current customer's address**

Soft-deletes one live address owned by the authenticated buyer
and returns 204 No Content. Both `X-Lynkow-Pk` and `Authorization: Bearer <customer-session-token>` are required. `{id}` must be an `addr_`
identifier.

### Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `id` | path | string | Yes | Unique identifier |


### Responses

| Status | Description |
| --- | --- |
| `204` | Deleted (no body) |
| `401` | Missing or invalid storefront publishable key |
| `402` | The site subscription does not currently permit this operation |
| `403` | The storefront key origin is not allowed |
| `404` | Not found |


> **Notes:** Missing or invalid customer authentication returns 401. A foreign,
> cross-site, soft-deleted, or absent address returns the same 404.
> Storefront spam controls apply to this write.

### Examples

```curl
curl -X DELETE "https://api.lynkow.com/storefront/{siteId}/customers/me/addresses/addr_..." \
  -H "X-Lynkow-Pk: lkw_pk_..." \
  -H "Authorization: Bearer <customer-session-token>" \
  -H "Content-Type: application/json" \
  -d "{ \"_hp\": \"\", \"_ts\": $(( $(date +%s) * 1000 - 5000 )) }"
```

---