---
title: "Create an incoming webhook"
method: POST
path: "/public/v1/incoming-webhooks"
tags: ["Incoming Webhooks"]
---

# Create an incoming webhook

`POST /public/v1/incoming-webhooks`

Creates an incoming webhook for the authenticated account. Requires a USER API key and returns the access token needed to call the webhook.

## Request body

- PublicIncomingWebhookCreateInput
  - `name` string, required
  - `description` string, nullable
  - `isActive` boolean
  - `useAuthentication` boolean

## Response `201`

Created incoming webhook

- IncomingWebhookCreateOutput
  - `id` string, required
  - `name` string, required
  - `description` string, nullable
  - `url` string, required
  - `isActive` boolean, required
  - `useAuthentication` boolean, required
  - `createdAt` string, required
  - `updatedAt` string, required
  - `accessToken` string, nullable

## Other responses

- `401` — Unauthorized

---

[API](https://skmtc.net/getfrontline/apis/public-api.md) · [All operations](https://skmtc.net/getfrontline/apis/public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/getfrontline/public-api/revisions/9d33b6aad674/schema)
