Problem
@genesyscloud/api-node-client handles auth fine, but the template update payload doesn’t pass the storage quota check.
Code
const res = await client.emailTemplatesApi.patchEmailTemplate(templateId, { htmlContent: '<span>{{var}}</span>', localization: ['en-US'], version: 3 });
Error
409 Conflict blocks the optimistic lock.
Question
Need the exact JSON structure to bypass the validation pipeline since the webhook callback isn’t firing.