Hi I can see here in the best practices guide
That to request an ETA:
Note that only the pick-up address and package size or transport type are required in order to request this ETA.
In my php client I am not able to achieve this:
$job = new \Stuart\Job();
$job->addPickup('46 Boulevard Barbès, 75018 Paris');
$eta = $client->getEta($job);
print($eta->eta);
This is because the addPickup array doesn’t accept setPackageType()
In our flow we would like to see if drivers are available before making the customer add xyz to their baskets.
Is this possible? If so how?
Thanks