---
title: "Create a new division."
method: POST
path: "/divisions"
tags: ["Divisions"]
---

# Create a new division.

`POST /divisions`

Creates a new division for the authenticated creditor.

Divisions allow creditors to organize cases under different business units, branches, or departments.

**Required Fields:**
- companyName - Name of the division
- city - City where the division is located
- countryCode - ISO 3166-1 alpha-2 country code (e.g. 'US', 'DE', 'DK')

**Optional Fields:**
- registrationNumber - Company registration number (CVR, VAT, etc.)
- address, zipCode, state - Full address details
- officeEmail, officePhone - Contact information

## Headers

- `Idempotency-Key` string

## Request body

- DebituraWebExternalApiContractsV1DivisionsCreateDivisionRequestDto
  - `companyName` string, required
  - `registrationNumber` string, nullable
  - `address` string, nullable
  - `zipCode` string, nullable
  - `state` string, nullable
  - `city` string, required
  - `countryCode` string, required
  - `officeEmail` string, email, nullable
  - `officePhone` string, nullable

## Response `201`

Division created successfully

- DebituraWebExternalApiContractsV1DivisionsDivisionDto
  - `id` string, uuid
  - `companyName` string, nullable
  - `registrationNumber` string, nullable
  - `address` string, nullable
  - `zipCode` string, nullable
  - `state` string, nullable
  - `city` string, nullable
  - `country` DebituraWebExternalApiContractsV1DivisionsDivisionCountryDto
    - `id` integer
    - `name` string, nullable
    - `alpha2` string, nullable
  - `officeEmail` string, nullable
  - `officePhone` string, nullable
  - `isArchived` boolean
  - `createdUtc` string, date-time
  - `updatedUtc` string, date-time, nullable

## Other responses

- `400` — Invalid request
- `422` — Business rule violation

---

[API](https://skmtc.net/debitura/apis/debitura-customer-api.md) · [All operations](https://skmtc.net/debitura/apis/debitura-customer-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/debitura/debitura-customer-api/versions/46478f2e476f/schema)
