REPREGION: Reporting region
The REPREGION entity represents a reporting region for financial and management reporting, grouping reporting business units by geography.
REPREGION definition shipped with DemandFlow. Administrators can add, remove, rename, or re-type fields, change which ones are required, and alter the layout from the Definitions screen in Settings. Your tenant's current schema may differ from what is shown here. To read the current definition at any time, GET the DEFINITION object whose id matches REPREGION.Entity properties
| Property | Value |
|---|---|
| Entity code | REPREGION |
| Display name | Reporting region |
| Plural | Reporting regions |
| Level | 250 |
Use cases
REPREGION is a reference entity that defines reporting regions used for financial and management reporting structures. It is distinct from REGION (which provides general-purpose geographic groupings) - REPREGION specifically serves the reporting hierarchy where REPREGION groups REPBU (reporting business units). The code field enables integration with external financial systems (e.g., ERP region codes), while description provides context. REPBU entities reference REPREGION via objectLookup, creating a two-level reporting classification (region > business unit) that can differ from the operational org hierarchy (ENT > BU > DIV > DEPT). This separation allows organisations to maintain an operational structure for day-to-day management while having an independent reporting structure for consolidated financial reporting. The simple grid view reflects its role as a straightforward lookup table.
Fields
General
| Field | Type | Required | Notes |
|---|---|---|---|
name | text | Yes | Name. |
code | text | Code. | |
description | text (multi-line) | Description. |
Relationships
- No declared relationships in the default definition.
Creating a Reporting region via the API
POST /v1/objects
Authorization: Bearer <your-pat>
Content-Type: application/json
{
"entity": "REPREGION",
"level": 250,
"comboKey": "SUB:<your-sub-id>|ENT:",
"name": "Example",
"code": "EX-001",
"description": "Long description text."
}
Listing REPREGION records
# All reporting regions in your tenant
GET /v1/entities/REPREGION/SUB