---
title: "Retrieve an office"
method: GET
path: "/offices/{id}"
tags: ["Offices"]
---

# Retrieve an office

`GET /offices/{id}`

Retrieves the office with the specified ID.

## Path parameters

- `id` string, required

## Response `200`

Office retrieved successfully.

- OfficeDetailDto
  - `id` string, required
  - `name` string, required
  - `emailAddresses` OrganizationalEmailAddressDto[], required
    - `email` string, email, required
    - `purpose` 'personal' | 'work', nullable, required
    - `isPrimary` boolean, required
  - `phoneNumbers` OrganizationalPhoneNumberDto[], required
    - `phoneNumber` string, required
    - `purpose` 'personal' | 'work', nullable, required
    - `isPrimary` boolean, required
  - `location` OfficeLocationDto, required
    - `street1` string, nullable, required
    - `street2` string, nullable, required
    - `postalCode` string, nullable, required
    - `city` string, nullable, required
    - `region` string, nullable, required
    - `state` string, nullable, required
    - `country` string, nullable, required
    - `countryCode` string, nullable, required
  - `createdAt` string, date-time, required

## Other responses

- `400` — Bad Request
- `500` — Error response

---

[API](https://skmtc.net/spott/apis/spott-webhooks.md) · [All operations](https://skmtc.net/spott/apis/spott-webhooks/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/spott/spott-webhooks/versions/ad1f8c51cf0a/schema)
