---
title: "Add Office"
method: PUT
path: "/v1.0/org/office"
tags: ["Agent Organization"]
---

# Add Office

`PUT /v1.0/org/office`

Creates a new office (organizational sub-unit) under the caller's team. Caller must have permission to manage team organization.

## Headers

- `Authorization` string, required
- `Content-Type` string, required

## Request body

- OfficeRequest — Office payload. id is required to identify the office to update.
  - `id` integer — Office ID. Required on update (POST /v1.0/org/office); ignored on create.
  - `parentId` integer — Parent office ID. Use 0 or null when creating a top-level office under the team.
  - `name` string — Office name.
  - `phone` string — Office phone number, digits only.
  - `phoneCode` string — Phone country calling code without the leading +.
  - `phoneCountry` string — ISO 3166-1 alpha-2 country code for the phone.
  - `email` string — Office contact email.
  - `city` string — City.
  - `state` string — State or province.
  - `zipcode` string — Postal / ZIP code.
  - `streetAddress` string — Street address line.
  - `allowManageSub` boolean — Whether members of this office can manage its sub-offices.

## Response `200`

Envelope with business code and message.

- OrganizationOpResponse — Response envelope for POST /v1.0/org/company, PUT /v1.0/org/office and POST /v1.0/org/office. Carries a business code and message; data may be absent on pure acknowledgement responses.
  - `code` integer — Business result code. 0 indicates success.
  - `message` string — Human-readable message. 'success' on success; error description otherwise.
  - `data` object — Operation result payload, if any.

## Other responses

- `400` — Invalid parameter or permission denied.
- `401` — Missing or invalid authentication token.
- `500` — Internal server error.

---

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