> 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/002_company/003_address/002__update_company_address.md).

# Update Company Address

GraphQL endpoint: `/company`

Update an existing address for the company. You can modify the address details, types, and visibility settings.

## Query

```graphql
mutation (
  $id: ID!
  $street: String
  $city: String
  $zipCode: String
  $state: String
  $country: String
  $types: [CompanyAddressType!]
  $visibility: [CompanyVisibilityType!]
) {
  updateCompanyAddress (
    id: $id
    street: $street
    city: $city
    zipCode: $zipCode
    state: $state
    country: $country
    types: $types
    visibility: $visibility
  ) {
    id
    city
    country
    state
    street
    zipCode
    types
    visibility
  }
}

```

## Variables

```json
{
  "id": "00000000-0000-4000-8000-000000000001",
  "types": [
    "SUPPORT"
  ],
  "visibility": [
    "PARTNER",
    "CUSTOMER"
  ]
}
```

## Response

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