Update 3D models

Securityoidc-token or oauth2-client-credentials or oauth2-open-industrial-data or oauth2-auth-code
Request
Request Body schema: application/json
required

List of changes.

One of:
required
Array of objects (UpdateModel3D) [ 1 .. 1000 ] items
Responses
200

Corresponding models after applying the updates.

400

The response for a failed request.

post/3d/models/update
Request samples
three_d_model = client.three_d.models.retrieve(id=1)
three_d_model.name = "New Name"
res = client.three_d.models.update(three_d_model)

from cognite.client.data_classes import ThreeDModelUpdate
my_update = ThreeDModelUpdate(id=1).name.set("New Name")
res = client.three_d.models.update(my_update)
Response samples
application/json
{
  • "items": [
    • {
      }
    ]
}