---
title: "Get division"
method: GET
path: "/tenants/{tenant_id}/divisions/{division_id}"
tags: ["Divisions"]
---

# Get division

`GET /tenants/{tenant_id}/divisions/{division_id}`

Returns division details including description, billing email, and whether a payment method is attached. Divisions are tenant subunits used for billing isolation and environment grouping.

## Path parameters

- `tenant_id` integer, required
- `division_id` integer, required

## Response `200`

Division details

- DivisionDetails
  - `created_at` string, date-time, required — Resource creation timestamp (RFC 3339 UTC).
  - `id` integer, required
  - `name` string, required
  - `protected` boolean, required — When `true`, deletion is hardened: the DELETE request must include a one-time confirmation code emailed to the tenant address. Obtain the code via `PUT /tenants/{tenant_id}/request_code` with `action = "delete_division"` and pass it as the `code` query parameter on the DELETE call.
  - `updated_at` string, date-time, required — Resource last-update timestamp (RFC 3339 UTC).
  - `description` string, required
  - `email` string, required
  - `has_payment_method` boolean, required

## Other responses

- `403` — Insufficient permissions on the division
- `404` — Division not found

---

[API](https://skmtc.net/laserdata/apis/laserdata-cloud-core-api.md) · [All operations](https://skmtc.net/laserdata/apis/laserdata-cloud-core-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/laserdata/laserdata-cloud-core-api/revisions/db81a447bba9/schema)
