Delete models

async AsyncCogniteClient.three_d.models.delete(
id: int | Sequence[int],
) None

Delete 3d models.

Parameters:

id (int | Sequence[int]) – ID or list of IDs to delete.

Example

Delete 3d model by id:

>>> from cognite.client import CogniteClient, AsyncCogniteClient
>>> client = CogniteClient()
>>> # async_client = AsyncCogniteClient()  # another option
>>> res = client.three_d.models.delete(id=1)