getCurrentOperatorApiKeyId(); $enrichmentKey = $this->getCurrentOperatorEnrichmentKeyString(); $params = $this->f3->get('POST'); $type = $params['type']; $search = $params['search'] ?? null; $entityId = $params['entityId'] ?? null; return $dataController->enrichEntity($type, $search, $entityId, $apiKey, $enrichmentKey); } public function getNotCheckedEntitiesCount(): array { $apiKey = $this->getCurrentOperatorApiKeyId(); return $apiKey ? (new Data())->getNotCheckedEntitiesCount($apiKey) : []; } }