diff --git a/api/zefixAPI.php b/api/zefixAPI.php index ddb8183..45c3171 100644 --- a/api/zefixAPI.php +++ b/api/zefixAPI.php @@ -49,8 +49,6 @@ curl_close($ch); function sendAPICommunityRequest(string $username, string $password): string|bool { - echo $username; - echo $password; // API endpoint $apiUrl = 'https://www.zefix.admin.ch/ZefixPublicREST/api/v1/community'; @@ -82,6 +80,7 @@ function sendAPICommunityRequest(string $username, string $password): string|boo // Close cURL curl_close($ch); + echo $response; return $response; }