diff --git a/packages/basic.gblib/services/SystemKeywords.ts b/packages/basic.gblib/services/SystemKeywords.ts index 7d08384c..99fd136d 100644 --- a/packages/basic.gblib/services/SystemKeywords.ts +++ b/packages/basic.gblib/services/SystemKeywords.ts @@ -1865,6 +1865,7 @@ export class SystemKeywords { if (typeof (data) === 'object') { options['body'] = JSON.stringify(data); + options.headers['Content-Type'] = 'application/json'; } else { options['body'] = data; @@ -1899,6 +1900,7 @@ export class SystemKeywords { if (typeof (data) === 'object') { options['body'] = JSON.stringify(data); + options.headers['Content-Type'] = 'application/json'; } else { options['body'] = data;