如何使用python从salesforce获取成功和失败记录?

时间:2019-04-09 07:35:36

标签: python salesforce

如何使用python获取Salesforce中已处理的记录数和失败的记录数。

我想使用python从salesforce中获取“监视器批量数据加载作业”,并将其存储在postgres表中

批量API更新后,如何检查批处理以查找记录数

我正在使用salesforce-bulk Python库,并使用batch_status函数

我需要以下输出。

{
'apexProcessingTime': '0',
'apiActiveProcessingTime': '1',
'createdDate': '2019-04-07T18:33:47.000Z',
'id': '...',
'jobId': '...',
'numberRecordsFailed': '7',    # This is non-zero, so something went 
wrong
'numberRecordsProcessed': '7',
state': 'Completed',
'systemModstamp': '2019-04-07T18:33:47.000Z',
'totalProcessingTime': '21',
}

有什么办法可以弄清他们失败的原因吗?各种错误消息,以便可以更正错误记录

0 个答案:

没有答案