Skip to main content
POST
/
transformations
/
notifications
Python SDK
from cognite.client.data_classes import TransformationNotification
notifications = [TransformationNotification(transformation_id = 1, destination="my@email.com"), TransformationNotification(transformation_external_id="transformation2", destination="other@email.com"))]
res = client.transformations.notifications.create(notifications)
{
  "items": [
    {
      "id": 123,
      "createdTime": 123,
      "lastUpdatedTime": 123,
      "transformationId": 123,
      "destination": "<string>"
    }
  ]
}

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.

Body

application/json

List of the notifications for new subscriptions. Must be up to a maximum of 1000 items.

items
object[]
Maximum array length: 1000

Response

Response with list of created notification subscriptions.

items
object[]
Last modified on April 23, 2026