Choose your language:
    Re-send the webhook call

    Examples

    Example code:
    const SiteClient = require('datocms-client').SiteClient;
    const client = new SiteClient('YOUR-API-TOKEN');
    const webhookCallId = '42';
    client.webhookCall.resendWebhook(webhookCallId)
    .then(() => {
    console.log('Done!');
    })
    .catch((error) => {
    console.error(error);
    });