restforcephp icon indicating copy to clipboard operation
restforcephp copied to clipboard

Can multiple records of the same object be created in one request?

Open gbrlmza opened this issue 7 years ago • 1 comments

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'],
]);

gbrlmza avatar Feb 05 '18 19:02 gbrlmza