guptaharsh
New Contributor III

@szymon_dybczak , I gone through the Databricks docs.. I have added the webhook notifications in DLT pipeline. 
it works fine for me 😊.

 

# The job that triggers api_data_pipeline.
resources:
  jobs:
    api_data_job:
      name: api_data_job
      schedule:
        quartz_cron_expression: 0 30 5 * * ?
        timezone_id: Asia/Kolkata
        pause_status: UNPAUSED

      webhook_notifications:
        on_failure:
          - id: ${var.webhook}
        on_success:
          - id: ${var.webhook}

 

View solution in original post