import type * as Extend from "../../../../index"; /** * @example * {} */ export interface WebhookEndpointsUpdateRequest { /** The workspace ID to target. **Required** when using an organization-scoped API key; optional for workspace-scoped keys (the key is already tied to a workspace). See [Authentication](https://docs.extend.ai/2026-02-09/developers/authentication) for details on API key scopes. */ "x-extend-workspace-id"?: string; /** The URL that webhook events will be sent to. */ url?: string; /** A human-readable name for the webhook endpoint. */ name?: string; status?: Extend.WebhookEndpointStatus; /** The list of global event types to subscribe to. */ enabledEvents?: Extend.WebhookEndpointEventType[]; advancedOptions?: Extend.WebhookAdvancedOptions; }