Hello,
is possible create quote with quote items via API Create?
To create Quote I use:
How to add items?
Thanks for any help
is possible create quote with quote items via API Create?
To create Quote I use:
PHP Code:
?php
require_once('EspoApiClient.php');
$url = 'https://page.com';
$apiKey = '1830d555dd1*************435284c9c';
$client = new EspoApiClient($url);
$client->setApiKey($apiKey);
// example creating a new lead
try {
$response = $client->request('POST', 'Quote', [
'name' => 'Test Z API',
]);
} catch (\Exception $e) {
$errorCode = $e->getCode();
}
Thanks for any help
Comment