/** * @example * { * webhookId: "webhookId", * senders: ["+14155551234", "agent_abc123"] * } */ export interface DetachWebhookParams { /** Webhook ID to detach (starts with `wh_`). Must be a webhook owned by your team. */ webhookId: string; /** Array of senders to detach the webhook from. Can be phone numbers in E.164 format or RCS agent IDs. */ senders: string[]; }