HappydaysAS

Results 2 comments of HappydaysAS

Sure thing ```php public function getSuppressedSince($date = null) { $date = $date ?? now()->subDays(3)->toDateString(); $collection = collect(); $response = $this->klaviyoAPI->Profiles->getProfiles(filter: "greater-or-equal(subscriptions.email.marketing.suppression.timestamp,{$date})", apiKey: config('klaviyo.api_token')); $collection->push(ProfileData::collection($response['data'])); if ($response['links']['next']) { $response = $this->klaviyoAPI->Profiles->getProfiles(filter:...

Any updates on this? Again, from the first response I get the following: ![Screenshot from 2024-02-13 11-09-59](https://github.com/klaviyo/klaviyo-api-php/assets/142597202/9bbdd91c-a8a8-4e2f-97c4-9410cf237a76) It then states in the documentation, I should add the value of ['links']['next']...