Skip to main content
POST
/
3d
/
models
/
{modelId}
/
revisions
/
{revisionId}
/
nodes
/
byids
JavaScript SDK
const nodes3d = await client.revisions3D.retrieve3DNodes(8252999965991682, 4190022127342195, [{id: 123}, {id: 456}]);
{
  "items": [
    {
      "id": 1000,
      "treeIndex": 3,
      "depth": 2,
      "name": "Node name",
      "subtreeSize": 4,
      "parentId": 2,
      "properties": {
        "category1": {
          "property1": "value1",
          "property2": "value2"
        },
        "category2": {
          "property1": "value1",
          "property2": "value2"
        }
      },
      "boundingBox": {
        "max": [
          123
        ],
        "min": [
          123
        ]
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Access token issued by the CDF project's configured identity provider. Access token must be an OpenID Connect token, and the project must be configured to accept OpenID Connect tokens. Use a header key of 'Authorization' with a value of 'Bearer $accesstoken'. The token can be obtained through any flow supported by the identity provider.

Path Parameters

modelId
integer<int64>
required

Model ID.

revisionId
integer<int64>
required

Revision ID.

Body

application/json

The request body containing the IDs of the nodes to retrieve. Will return error 400 if the revision is still being processed.

items
object[]
required
Required array length: 1 - 1000 elements

Response

A list of nodes.

items
object[]
required
Last modified on April 23, 2026