> For the complete documentation index, see [llms.txt](https://docs.tnid.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tnid.com/api-reference/001_user/003_address/003__remove_user_address.md).

# Remove User Address

GraphQL endpoint: `/user`

Removes an address from the user's profile. This permanently deletes the address record.

## Query

```graphql
mutation (
  $id: ID!
) {
  removeUserAddress (
    id: $id
  ) {
    id
    city
    country
    state
    street
    zipCode
    types
  }
}

```

## Variables

```json
{
  "id": "00000000-0000-4000-8000-000000000001"
}
```

## Response

```json
{
  "data": {
    "removeUserAddress": {
      "city": "test city",
      "country": "United States",
      "id": "00000000-0000-4000-8000-000000000001",
      "state": "Alabama",
      "street": "test street 1",
      "types": [
        "HOME"
      ],
      "zipCode": "12345"
    }
  }
}
```
