import { buildClient } from '@datocms/cma-client-node';async function run() { const client = buildClient({ apiToken: '<YOUR_API_TOKEN>' }); const webhookCallId = '42'; await client.webhookCalls.resendWebhook(webhookCallId);}run();