From 2484516e94313bc46f4f94bb673ff85f09229e75 Mon Sep 17 00:00:00 2001 From: Julien Boisseau Date: Fri, 9 Jan 2026 13:22:56 +0100 Subject: [PATCH] Fix bad filtering using guzzlehttp thought http_build_query which encore querystring. This was not understand by Linxo. --- src/ApiClient.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ApiClient.php b/src/ApiClient.php index 60e0ae5..7c53dac 100644 --- a/src/ApiClient.php +++ b/src/ApiClient.php @@ -96,7 +96,7 @@ public function getTransactions( ): array { $query = [ 'user_id' => $this->userId, - 'account_ids' => [$accountId], + 'account_ids' => $accountId, 'page' => $page, 'limit' => $limit ];