Show examples in:
    Re-send the webhook call

    Examples

    Example Basic example
    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();