From 8b2bb27e17cd842dcea53947aa49ce8f405226ba Mon Sep 17 00:00:00 2001 From: 0x543 Date: Fri, 6 Sep 2024 21:18:29 +0300 Subject: [PATCH] AnalyticsService v2 (#88) --- src/Service/V2/AnalyticsService.php | 33 +++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/Service/V2/AnalyticsService.php diff --git a/src/Service/V2/AnalyticsService.php b/src/Service/V2/AnalyticsService.php new file mode 100644 index 0000000..a856b90 --- /dev/null +++ b/src/Service/V2/AnalyticsService.php @@ -0,0 +1,33 @@ + $offset, + 'limit' => $limit, + 'warehouse_type' => $warehouse_type + ]; + + return $this->request( + 'POST', + "{$this->path}/stock_on_warehouses", + $body + ); + } + +}