---
title: "Update incoming webhook"
method: PUT
path: "/public/v1/incoming-webhooks/{webhookId}"
tags: ["Incoming Webhooks"]
---

# Update incoming webhook

`PUT /public/v1/incoming-webhooks/{webhookId}`

Updates an incoming webhook's name, description, active state, or authentication toggle. Requires a USER API key.

## Path parameters

- `webhookId` string, required

## Request body

- PublicIncomingWebhookUpdateInput
  - `name` string
  - `description` string, nullable
  - `isActive` boolean
  - `useAuthentication` boolean

## Response `200`

Updated incoming webhook

- PublicIncomingWebhook
  - `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

- `404` — Not Found

---

[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/versions/9d33b6aad674/schema)
