Re-render and resend a logged email (writes a fresh log row)
POST
/admin/v1/emails/{id}/resend
const url = 'https://your-store.example.com/admin/v1/emails/example/resend';const options = {method: 'POST'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://your-store.example.com/admin/v1/emails/example/resendParameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string