You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<?php
/** @var \EventFarm\Restforce\RestforceInterface $restforce */
$restforce = (new DemoSalesforceApi())->getClient();
/** @var \Psr\Http\Message\ResponseInterface $responseInterface */
$responseInterface = $restforce->create('Account', [
['Name' => 'Foo Bar 1'],
['Name' => 'Foo Bar 2'],
]);
The text was updated successfully, but these errors were encountered:
gbrlmza
changed the title
Can multiple records of the same object be created on one request?
Can multiple records of the same object be created in one request?
Feb 5, 2018
Unfortunately in the current version we are not supporting multiple create. If you want to contribute it would probably be pretty simple to get in here. I wouldn’t mind answering any questions you may have. I will be quicker with the responses too 👍
Something like this?
The text was updated successfully, but these errors were encountered: