Content Management API > Webhook call
Re-send the webhook call
Examples
import { buildClient } from "@datocms/cma-client-node";
async function run() { const client = buildClient({ apiToken: process.env.DATOCMS_API_TOKEN });
const webhookCallId = "42"; await client.webhookCalls.resendWebhook(webhookCallId);}
run();