CABLEROUTEPT: Cable Route Point
An intermediate waypoint along a cable pathway route, defining bends, turns, and junctions for 3D visualization.
Default definition. This article describes the default
CABLEROUTEPT 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 CABLEROUTEPT.Entity properties
| Property | Value |
|---|---|
| Entity code | CABLEROUTEPT |
| Display name | Cable Route Point |
| Plural | Cable Route Points |
| Level | 279 |
Use cases
CABLEROUTEPT models waypoints along a CABLEPATHWAY route. A pathway with no route points renders as a straight line from start to end coordinates. Adding route points creates a multi-segment path that follows bends, turns, and junctions. The sequence field determines point order along the route. Coordinates use the same mm-based system as rack roomX/roomY positioning, with Z representing height above the finished floor level. The pointType field captures the nature of the routing change at each waypoint, while bendRadius is important for fibre compliance (minimum bend radius requirements).
Fields
General: Route Point
| Field | Type | Required | Notes |
|---|---|---|---|
name | text | Optional label, e.g. Bend at Row C, Junction to Riser B | |
sequence | number | Yes | Order along the route (1, 2, 3...) |
pointType | enum | Point Type. Valid ids: 1 (Straight), 2 (90° Bend), 3 (45° Bend), 4 (T-Junction), 5 (Cross Junction), 6 (Drop / Riser), 7 (Entry Point), 8 (Exit Point). | |
bendRadius | number | Minimum bend radius at this point (important for fibre compliance) | |
notes | text (multi-line) | Notes. |
General: Coordinates
| Field | Type | Required | Notes |
|---|---|---|---|
x | number | Yes | mm from room origin (same coordinate system as rack roomX) |
y | number | Yes | mm from room origin (same coordinate system as rack roomY) |
z | number | Yes | Height above finished floor level (e.g. 2400 for overhead, -200 for underfloor) |
Relationships
- No declared relationships in the default definition.
Creating a Cable Route Point via the API
POST /v1/objects
Authorization: Bearer <your-pat>
Content-Type: application/json
{
"entity": "CABLEROUTEPT",
"level": 279,
"comboKey": "SUB:<your-sub-id>|ENT:",
"sequence": 0,
"x": 0,
"y": 0,
"name": "Point Name"
}
Listing Cable Route Points records
GET /v1/entities/CABLEROUTEPT/SUB