Magento 2: How to add a tracking number to an order using REST API
I use the following code to add a tracking number to an order: $url = ‘https://xxxxx/rest/V1/order/514/ship’; $authorization = “Authorization: Bearer “.$json; //I get $json in other part of the code, this work fine $data = [ “items” => [ [… Read More »Magento 2: How to add a tracking number to an order using REST API