Retrieves specific nodes given by a list of IDs.
The request body containing the IDs of the nodes to retrieve. Will return error 400 if the revision is still being processed.
required | Array of objects (Node3DId) [ 1 .. 1000 ] items |
A list of nodes.
The response for a failed request.
{- "items": [
- {
- "id": 1000
}
]
}
{- "items": [
- {
- "id": 1000,
- "treeIndex": 3,
- "parentId": 2,
- "depth": 2,
- "name": "Node name",
- "subtreeSize": 4,
- "properties": {
- "category1": {
- "property1": "value1",
- "property2": "value2"
}, - "category2": {
- "property1": "value1",
- "property2": "value2"
}
}, - "boundingBox": {
- "max": [
- 0,
- 0,
- 0
], - "min": [
- 0,
- 0,
- 0
]
}
}
]
}