I need to insert multiple rows into the OpportunityLineItem table in one POST request https: //*.salesforce.com/services/data/v20.0/sobjects/OpportunityLineItem
A single insert works fine for me: {"OpportunityId": "xxx", "Quantity": 1, "UnitPrice": 100, "PricebookEntryId": "xxx"}
But it fails when I try to POST a few records {"records": [{"OpportunityId": "xxx", "Quantity": 1, "UnitPrice": 100, "PricebookEntryId": "xxx"}, {" OpportunityId ":" xxx "," Quantity ": 4," UnitPrice ": 110," PricebookEntryId ":" xxx "}]}
Vadim source
share