REST多个插入

时间:2011-05-05 13:36:03

标签: json rest salesforce

我需要在单个POST请求中向OpportunityLineItem表中插入几行 HTTPS:// * .salesforce.com /服务/数据/ v20.0 / sobjects / OpportunityLineItem

单插件适合我: { “OpportunityId”: “XXX”, “数量”:1, “单价”:100, “PricebookEntryId”: “XXX”}

但是当我尝试POST多条记录时它失败了 {“records”:[{“OpportunityId”:“xxx”,“Quantity”:1,“UnitPrice”:100,“PricebookEntryId”:“xxx”}, { “OpportunityId”: “XXX”, “数量”:4 “单价”:110, “PricebookEntryId”: “XXX”}]}

2 个答案:

答案 0 :(得分:4)

您无法在其余的api中的单个调用中插入多行,您需要使用批量api。

答案 1 :(得分:0)

夏季'15版本允许将不同的操作(如插入,更新,删除等)组合到一个请求中。 Release note

我在duplicate question找到了它。