以下の body(payload) を使用して、アカウントを Salesforce にプッシュするための upsert 一括ジョブを作成してみました。
{
"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"
}
]