Interface WebhookConfig

Configuration for webhook notifications.

Used to configure webhook endpoints that will receive notifications when long-running operations (e.g., batch jobs, video generation) complete.

interface WebhookConfig {
    uris?: string[];
    userMetadata?: Record<string, unknown>;
}

Properties

Properties

uris?: string[]

The webhook URIs to receive notifications. If set, these webhook URIs will be used instead of the registered webhooks.

userMetadata?: Record<string, unknown>

User metadata that will be included in each webhook event notification. Use this to attach custom key-value data to correlate webhook events with your internal systems.