From da67374c32af6ae3d08b77ddf996a5f06c525844 Mon Sep 17 00:00:00 2001 From: Jakub Kontra Date: Thu, 23 Feb 2023 22:28:26 +0100 Subject: [PATCH] Fix automation api url --- src/Ecomail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ecomail.php b/src/Ecomail.php index cc2484b..867ffcf 100644 --- a/src/Ecomail.php +++ b/src/Ecomail.php @@ -300,7 +300,7 @@ public function getCampaignStats($campaign_id) */ public function listAutomations() { - $url = $this->joinString('automation'); + $url = $this->joinString('pipelines'); return $this->get($url); }