Delete transformation notifications

async AsyncCogniteClient.transformations.notifications.delete(
id: int | Sequence[int] | None = None,
) None

Deletes the specified notification subscriptions on the transformation.

Does nothing when the subscriptions already don’t exist.

Parameters:

id (int | Sequence[int] | None) – Id or list of transformation notification ids

Examples

Delete schedules by id or external id:

>>> from cognite.client import CogniteClient, AsyncCogniteClient
>>> client = CogniteClient()
>>> # async_client = AsyncCogniteClient()  # another option
>>> client.transformations.notifications.delete(id=[1, 2, 3])