zakku za
zakku za

Reputation: 41

How to call update request using exact online API

i am using exact online PHP SDK. i am able to create record using POST Request.

How to send update request to update SalesOrder DeliveryDate using Orderid?

Upvotes: 1

Views: 729

Answers (1)

mohammad mahamood ali
mohammad mahamood ali

Reputation: 79

please find below example to update request in exact online

$salesorderline               = new \Picqer\Financials\Exact\SalesOrderLine($connection);

       $s                     = $salesorderline->find('xxxxxx-xxxx-xxx-xxxxxx');
       $s->Notes              = 'mahamood';
       $s->DeliveryDate       = '2018-08-02 08:30:00.000000';
       $s->update();

Upvotes: 1

Related Questions