Get Pipe Junctions
Get a list of all pipe junctions.
Response Body
| Name | Type | Description |
|---|---|---|
ID |
String |
Unique ID of the Pipe Junction. |
Name |
String |
Name of the Pipe Junction. |
ClassName |
String |
Class Name of the Pipe Junction. |
ColorSlot |
Object |
Color/Decoration information about the Actor. |
PrimaryColor |
String |
Hex Code of Primary Color |
SecondaryColor |
String |
Hex Code of Secondary Color |
BoundingBox |
Object |
Bounding Box information about the Actor. |
min |
Object |
The minimum boundary of the bounding box in the corresponding axis. |
x |
Float |
Value along the X-axis. |
y |
Float |
Value along the Y-axis. |
z |
Float |
Value along the Z-axis. |
max |
Object |
The maximum boundary of the bounding box in the corresponding axis. |
x |
Float |
Value along the X-axis. |
y |
Float |
Value along the Y-axis. |
z |
Float |
Value along the Z-axis. |
features |
Object |
An object with actor coordinates and name information. |
properties |
Object |
Name information about the actor. |
name |
String |
Display Name of the Actor. |
type |
String |
Type of the Object. |
geometry |
Object |
Geometry information about the Actor. |
coordinates |
Object |
The Actor coordinates. |
x |
Float |
X Location of the Actor. |
y |
Float |
Y Location of the Actor. |
z |
Float |
Z Location of the Actor. |
type |
String |
It’s always "Point". |
Example Response
[
{
"ID": "Build_PipelineJunction_Cross_C_2147369909",
"Name": "Pipeline Junction",
"ClassName": "Build_PipelineJunction_Cross_C",
"location": {
"x": -279356.65625,
"y": -145735.484375,
"z": -1447.62060546875,
"rotation": 90
},
"BoundingBox": {
"min": {
"x": -279476.65625,
"y": -145855.484375,
"z": -1522.62060546875
},
"max": {
"x": -279236.65625,
"y": -145615.484375,
"z": -1372.62060546875
}
},
"ColorSlot": {
"PrimaryColor": "FA954900",
"SecondaryColor": "FA954900"
}
}
]