|
|
@@ -44,12 +44,10 @@ class TradeService extends BaseService
|
|
|
/**
|
|
|
* Acknowledge logistics sync
|
|
|
*/
|
|
|
- public function ackLogisticsSync(array $logisticsIds): ApiResponse
|
|
|
+ public function ackLogisticsSync(array $logisticsList): ApiResponse
|
|
|
{
|
|
|
- $this->validateRequired(['logistics_ids' => $logisticsIds], ['logistics_ids']);
|
|
|
-
|
|
|
return $this->call('logistics_sync_ack.php', [
|
|
|
- 'logistics_ids' => $this->encodeIfArray($logisticsIds),
|
|
|
+ 'logistics_list' => $this->encodeIfArray($logisticsList),
|
|
|
]);
|
|
|
}
|
|
|
|