Delete function
- async AsyncCogniteClient.functions.delete(
- id: int | Sequence[int] | None = None,
- external_id: str | SequenceNotStr[str] | None = None,
-
- Parameters:
id (int | Sequence[int] | None) – Id or list of ids.
external_id (str | SequenceNotStr[str] | None) – External ID or list of external ids.
Example
Delete functions by id or external id:
>>> from cognite.client import CogniteClient, AsyncCogniteClient >>> client = CogniteClient() >>> # async_client = AsyncCogniteClient() # another option >>> client.functions.delete(id=[1,2,3], external_id="function3")