---
title: "Create a notification provider"
method: POST
path: "/api/notification-providers"
tags: ["Notifications"]
---

# Create a notification provider

`POST /api/notification-providers`

Create a new notification provider (email, Slack, webhook, Telegram, Discord, or Teams).

## Request body

- object
  - `name` string, required
  - `type` 'email' | 'slack' | 'webhook' | 'telegram' | 'discord' | 'teams', required
  - `config` object, required — Provider-specific configuration (e.g. `webhookUrl` for Slack)

## Response `201`

Provider created

- NotificationProvider
  - `id` string, uuid
  - `name` string
  - `type` 'email' | 'slack' | 'webhook' | 'telegram' | 'discord' | 'teams'
  - `enabled` boolean
  - `config` object
  - `lastUsed` string, date-time, nullable
  - `createdAt` string, date-time

## Other responses

- `401` — Authentication required or token invalid

---

[API](https://skmtc.dev/supercheck-io/apis/supercheck-api.md) · [All operations](https://skmtc.dev/supercheck-io/apis/supercheck-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/supercheck-io/supercheck-api/revisions/81782deccf0e/schema)
