我尝试使用以下正文(有效负载)创建一个 upsert 批量作业,以便将帐户推送到 Salesforce。
{
"object" : "Account",
"externalIdFieldName":"Website",
"contentType" : "CSV",
"operation" : "upsert",
"lineEnding" : "LF"
}
但是,我收到如下错误,无法找到出路。你能帮忙正确的'externalIdFieldName'吗?
[
{
"errorCode": "INVALIDJOB",
"message": "InvalidJob : Field name provided, website does not match an External ID, Salesforce Id, or indexed field for Account"
}
]