RADCENTRE: RAD Center
The RADCENTRE entity represents a radio access device centre position on a tower section, defining antenna placement and occupancy.
RADCENTRE 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 RADCENTRE.Entity properties
| Property | Value |
|---|---|
| Entity code | RADCENTRE |
| Display name | RAD Center |
| Plural | RAD Centers |
| Level | 38000 |
Use cases
RADCENTRE represents a designated position on a tower section where radio access equipment (antennas, RRUs) can be placed. Each RAD centre belongs to a tower and tower section, positioned by height above ground level (AGL) and azimuth bearing. The Occupancy panel tracks whether the position is currently occupied, what equipment is installed (EQUIPMENT entity reference), and status (via MOUNTSTATUS lookup). RAD centres appear as a related list on TOWSEC records, enabling tower section capacity planning. This entity bridges the gap between physical tower structure (sections, faces) and the radio frequency planning domain by defining the specific positions where radio equipment is intended to operate. Uses complex view for the two-panel layout.
Fields
General
| Field | Type | Required | Notes |
|---|---|---|---|
radCenterCode | text | Yes | RAD Center Code. |
tower | reference → TOWER | Yes | Tower. |
section | reference → TOWERSECTION | Yes | Tower Section. |
heightAgl | number | Height AGL (m). | |
azimuth | number | Azimuth (degrees). | |
occupied | boolean | Occupied. | |
equipment | reference → EQUIPMENT | Equipment. | |
status | reference → MOUNTSTATUS | Status. |
Relationships
- Lookups:
towerpoints atTOWERrecord;sectionpoints atTOWERSECTIONrecord;equipmentpoints atEQUIPMENTrecord;statuspoints atMOUNTSTATUSrecord.
Creating a RAD Center via the API
POST /v1/objects
Authorization: Bearer <your-pat>
Content-Type: application/json
{
"entity": "RADCENTRE",
"level": 38000,
"comboKey": "SUB:<your-sub-id>|ENT:",
"radCenterCode": "EX-001",
"tower": "",
"section": "",
"heightAgl": 100
}
Listing RADCENTRE records
# All rad centers in your tenant
GET /v1/entities/RADCENTRE/SUB