Skip to content

Latest commit

 

History

History
executable file
·
36 lines (26 loc) · 741 Bytes

File metadata and controls

executable file
·
36 lines (26 loc) · 741 Bytes

notifications

Available Operations

try_notification_config

Try sending a notifications

Example Usage

import airbyte
from airbyte.models import shared

s = airbyte.Airbyte()

req = shared.Notification(
    customerio_configuration={
        "explicabo": 'impedit',
        "aliquid": 'quis',
    },
    notification_type=shared.NotificationTypeEnum.CUSTOMERIO,
    send_on_failure=False,
    send_on_success=False,
    slack_configuration=shared.SlackNotificationConfiguration(
        webhook='ipsum',
    ),
)

res = s.notifications.try_notification_config(req)

if res.notification_read is not None:
    # handle response