Sorry, no results found for "".
1import { buildClient } from "@datocms/cma-client-node";2 3async function run() {4 const client = buildClient({ apiToken: process.env.DATOCMS_API_TOKEN });5 6 const webhookCallId = "42";7 await client.webhookCalls.resendWebhook(webhookCallId);8}9 10run();