1POST https://site-api.datocms.com/webhook_calls/:webhook_call_id/resend_webhook HTTP/1.12Authorization: Bearer YOUR-API-TOKEN3Accept: application/json4X-Api-Version: 3
1curl -g 'https://site-api.datocms.com/webhook_calls/:webhook_call_id/resend_webhook' \2 -X POST \3 -H "Authorization: Bearer YOUR-API-TOKEN" \4 -H "Accept: application/json" \5 -H "X-Api-Version: 3"
1await fetch(2 "https://site-api.datocms.com/webhook_calls/:webhook_call_id/resend_webhook",3 {4 method: "POST",5 headers: {6 Authorization: "Bearer YOUR-API-TOKEN",7 Accept: "application/json",8 "X-Api-Version": "3",9 },10 },11);