Skip to main content

Client Divisions

Divisions allow you to segment your debt collection cases across different organizational units, brands, or legal entities.

Business context: See Using Divisions for Multi-Brand Management for setup instructions and use cases.

When to Use Divisions

Divisions are the right choice when one organization operates multiple brands or legal entities:

ScenarioSolution
Holding company with subsidiaries (Acme UK, Acme DE, Acme FR)One client + divisions
Multi-brand retailer (Brand A, Brand B, Brand C)One client + divisions
Company with regional offices needing separate trackingOne client + divisions
Completely unrelated businessesSeparate client accounts
For Referral Partners

If your platform supports users who manage multiple brands under one organization, use divisions to separate their cases. Create one client per organization with one externalTenantId, then assign cases to the appropriate division.

Debitura's user system is not multi-tenant—one user cannot belong to multiple unrelated client accounts. See Client Lifecycle for details.

Overview

Divisions are optional organizational containers within your Debitura account. When enabled, you can:

  • Assign cases to specific divisions during creation
  • Filter case lists and analytics by division
  • Maintain separate branding or reference schemes per business unit

API Usage

Managing Divisions via API

The Customer API provides full CRUD management of divisions. You can create, list, update, delete, and archive divisions programmatically.

OperationEndpointDescription
CreatePOST /divisionsCreate a new division
ListGET /divisionsList divisions (paginated)
GetGET /divisions/{id}Get a single division
UpdatePUT /divisions/{id}Update all fields
DeleteDELETE /divisions/{id}Delete (blocked if cases exist)
ArchivePOST /divisions/{id}:archiveArchive (irreversible)
POST /divisions
Content-Type: application/json
XApiKey: YOUR_API_KEY

{
"companyName": "Acme Nordic",
"city": "Copenhagen",
"countryCode": "DK",
"registrationNumber": "12345678",
"officeEmail": "nordic@acme.com"
}

Country codes use ISO 3166-1 alpha-2 format (e.g. "US", "DE", "DK").

See the Divisions API Reference for full endpoint documentation.

Creating a Case with a Division

Include the creditorDivisionId field when creating a case:

POST /cases
Content-Type: application/json
XApiKey: YOUR_API_KEY

{
"creditorDivisionId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"currencyCode": "EUR",
"amountToRecover": 5000.00,
...
}