latestOpenAPI 3.1.0Proprietary2026-08-1095216168.4 KB

db81a447bba9

Divisions

Get division

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.

get/tenants/{tenant_id}/divisions/{division_id}

Path parameters

tenant_idinteger required
Example:7261845022003200000

Tenant identifier

division_idinteger required
Example:7261844974723780000

Division identifier

Response

Division details

created_atstring date-time required

Resource creation timestamp (RFC 3339 UTC).

idinteger required
namestring required
protectedboolean 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_atstring date-time required

Resource last-update timestamp (RFC 3339 UTC).

descriptionstring required
emailstring required
has_payment_methodboolean required

Example response

{
  "created_at": "2026-05-20T10:00:00Z",
  "id": 7261844974723780000,
  "name": "Engineering",
  "protected": true,
  "updated_at": "2026-05-20T10:00:00Z"
}