UpdateWebhook

January 9, 2026 ยท View on GitHub

Request body for updating an existing webhook.

Example Usage

import { UpdateWebhook } from "@moovio/sdk/models/components";

let value: UpdateWebhook = {
  url: "https://pretty-battle.info/",
  status: "enabled",
  eventTypes: [
    "networkID.updated",
  ],
  description: "the gee athwart catalyze",
};

Fields

FieldTypeRequiredDescription
urlstring:heavy_check_mark:The URL where webhook events will be sent.
statuscomponents.WebhookStatus:heavy_check_mark:The status of the webhook.
eventTypescomponents.WebhookEventType[]:heavy_check_mark:The list of event types this webhook should subscribe to.
descriptionstring:heavy_check_mark:A description of the webhook for reference. Can be an empty string.