We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10fe111 commit 7b1bfcdCopy full SHA for 7b1bfcd
1 file changed
src/Suite/Api/ContactList.php
@@ -51,10 +51,10 @@ public function createContactList(
51
}
52
53
54
- public function getContactLists(int $customerId, string $businessAreaId = null)
+ public function getContactLists(int $customerId)
55
{
56
try {
57
- return $this->apiClient->get($this->endPoints->contactLists($customerId, $businessAreaId))['data'];
+ return $this->apiClient->get($this->endPoints->contactLists($customerId))['data'];
58
} catch (Error $error) {
59
throw new RequestFailed('Could not fetch contact lists: ' . $error->getMessage(), $error->getCode(), $error);
60
0 commit comments