HappydaysAS
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:  It then states in the documentation, I should add the value of ['links']['next']...