我正在尝试获取元数据并更新某个部分,然后使用node.js和jsforce将此新元数据推送到salesforce。我成功地能够获取元数据,但在更新时我收到此错误:
{ [soapenv:Client: Element {http://soap.sforce.com/2006/04/metadata}articleTypeChannelDisplay invalid at this location in type CustomField] name: 'soapenv:Client', errorCode: 'soapenv:Client' }
这是我的代码:
conn.metadata.update('CustomField', metadata, function(err, results) {
if (err) {
console.log(err)
return reject(err)
} else {
console.log(results)
}
});
答案 0 :(得分:0)
用CustomField
替换CustomObject
解决了这个问题。有关详细信息,请阅读文档。