restforcephp
restforcephp copied to clipboard
Can multiple records of the same object be created in one request?
Something like this?
<?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'],
]);