---
title: "Create division"
method: POST
path: "/corporate/v2/divisions"
tags: ["Divisions"]
---

# Create division

`POST /corporate/v2/divisions`

Creates a division by level and hierarchy ID. To use the holidays defined in an administrative division, specify its ID in `administrative_division_id` to link your division.

This endpoint generates a [Corporate division created](https://developers.pismo.io/events/docs/corporate-division-creation-2) event.

## Request body

- CreateDivisionRequestV2 — Create division request body
  - `division_code` string, required — Code used to identify your division within the organization. Division code should only contain letters, numbers, and hyphens.
  - `hierarchy_id` string, uuid, required — Hierarchy ID generated by the [Create hierarchy](https://developers.pismo.io/pismo-docs/reference/post-hierarchies) endpoint.
  - `level_id` string, uuid, required — Level ID generated by the [Create hierarchy](https://developers.pismo.io/pismo-docs/reference/post-hierarchies) endpoint.
  - `name` string — Division name
  - `parent_code` string — Division code that can be set as the parent of the division being created. The parent must be at a level with a lower index than the division being created. It must comply with the rule `^[a-zA-Z0-9-]+$`.
  - `description` string, nullable — Division description
  - `timezone` string — Division timezone in timezone database format.<br> This value is used in the calculations for holidays, weekends, and daily balances. If a timezone is not specified, the division inherits the timezone from its parent division. If the parent division also lacks a specified timezone, Pismo defaults to using UTC. To clear this field, specify an empty string.
  - `program_ids` integer[] — List of allowed program IDs. The programs must belong to the organization. This list is used for validation during the [Create transaction banking account](https://developers.pismo.io/pismo-docs/reference/post-account) process. You can retrieve the organization programs using the [List programs](https://developers.pismo.io/pismo-docs/reference/programs-1) endpoint. If no program IDs are specified, this division inherits the `program_ids` list from the parent division, if it exists.
  - `administrative_division_id` integer — Administrative division ID. Specifying an administrative division ID in this field links your division to it. This is useful when you want to use the holidays defined in that administrative division.
  - `schema` SchemaCreateTransactionBankingAccount — Valid JSON schema as specified in https://json-schema.org/specification.html. Used to validate the JSON of custom fields in the [Create transaction banking account](https://developers.pismo.io/pismo-docs/reference/post-account) process. If this field is not set, the division inherits its schema from the parent division, if it exists.

## Response `201`

Created

- CreateDivisionsResponseV2 — Create division response body
  - `division_id` string, uuid, required — Pismo generates the division ID when you use the [Create division](https://developers.pismo.io/pismo-docs/reference/post-division-v2) endpoint.
  - `division_code` string, required — Code used to identify your division within the organization. Division code should only contain letters, numbers, and hyphens.
  - `parent_code` string — Division code that can be set as the parent of the division being created. The parent must be at a level with a lower index than the division being created. It must comply with the rule `^[a-zA-Z0-9-]+$`.
  - `level_id` string, uuid, required — Level ID generated by the [Create hierarchy](https://developers.pismo.io/pismo-docs/reference/post-hierarchies) endpoint.
  - `description` string, nullable — Division description
  - `name` string — Division name
  - `administrative_division_id` integer — Administrative division ID. Specifying an administrative division ID in this field links your division to it. This is useful when you want to use the holidays defined in that administrative division.

## Other responses

- `400` — Bad request
- `401` — Access token is missing or invalid
- `403` — The request has been lost
- `404` — Not Found
- `409` — Conflict
- `500` — Internal server error

---

[API](https://skmtc.net/pismo/apis/platform-authentication.md) · [All operations](https://skmtc.net/pismo/apis/platform-authentication/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/pismo/platform-authentication/versions/935b62e16de4/schema)
