LogoLogo
HOMEBLOG
  • Getting Started
  • Connect to Data
    • Projects
    • Data Connectors
      • Google BigQuery
      • Google Cloud Storage
      • Iceberg
      • Snowflake
      • AWS S3
      • AWS Athena
      • AWS Redshift
      • Databricks Delta
      • Azure Blob
      • Salesforce
      • SAP Hana
      • File Path Options
      • SQL Server
      • Trino
    • Connection Modes
    • Triggering Scans
    • Configuring a Data Source
  • Profiling Data
    • Data Health Metrics
    • Data Health Overview Page
    • Interactive Profiling Tool: Investigator
    • Data Diff
    • Compound Attributes
      • List of Supported Functions
  • Monitoring Data
    • Data Quality Metrics
    • Alert Policies
    • Data Trends and Alerts
    • Metrics Inspector
  • Data Quality Rules
    • Rules Expression Examples
  • PII Data Detection
  • Remediation
    • Data Binning
    • Circuit Breaker
  • Integrations
    • Jira Integration
    • Slack
    • Jobs Status Notification
  • User Management
    • Microsoft Entra IDP Setup
    • Auth0 Setup
    • Okta SSO Setup
    • SSO Configuration
  • API Reference
    • Authentication API
    • API Keys
    • Telmai IP List
    • Get Google Service Account API
  • Source APIs
    • Source APIs
  • Upload Data APIs
    • Upload data from Cloud
      • RedShift Request data
      • GCS Request data
      • Azure Request data
      • GBQ Request data
      • Snowflake Request data
      • Amazon S3 Request data
      • Delta Lake Request
      • Trino Request data
    • Track upload job
    • Check for alerts
  • Admin APIs
    • User Management
  • Telmai Releases
    • Release Notes
      • 25.2.1
      • 25.2.0
      • 25.1.3
      • 25.1.2
      • 25.1.0
Powered by GitBook
On this page
  1. Upload Data APIs

Check for alerts

APIs to check alert status of a given job

Get alerts status for a specific Job Id

GET https://env1.telm.ai/api/backend/{tenant}/configuration/alerts?job_id={job_id}

This endpoint gets you the status of the job from Upload data APIs

Path Parameters

Name
Type
Description

job_id*

string

Job Id from Upload data API

tenant*

string

Name of Tenant

Headers

Name
Type
Description

Content-type*

string

application/json

Authentication*

string

Bearer {token}

[
    {
        "type": "<alert_type>",
        "source": "<source_id>",
        "description": { "<alert description>"
        },
        "job_id": "<job_id>",
        "create_time": "<upload time>,
        "save_time": "<save_time>",
        "is_notification_enabled": <trye/false>,
        "metric_time": "<metric_time>",
        "metric_value": <metric_value>,
        "policy_name": "<policy_name>",
        "priority": "<priority_level>",
        "source_name": "<source_name>",
        "source_type": "<source_type>"
    },
    {
        "type": "<alert_type>",
        "source": "<source_id>",
        "description": { "<alert description>"
        },
        "job_id": "<job_id>",
        "create_time": "<upload time>,
        "save_time": "<save_time>",
        "is_notification_enabled": <trye/false>,
        "metric_time": "<metric_time>",
        "metric_value": <metric_value>,
        "policy_name": "<policy_name>",
        "priority": "<priority_level>",
        "source_name": "<source_name>",
        "source_type": "<source_type>"
    }
]
PreviousTrack upload jobNextUser Management

Last updated 6 months ago