From dfdd1a63fd76881837f497f927fd47b06ca1d1d8 Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Fri, 18 Oct 2024 06:53:47 -0400 Subject: [PATCH] WrenchWallet::requestVirtualCard --- www-api/app/Controllers/WrenchWallet.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/www-api/app/Controllers/WrenchWallet.php b/www-api/app/Controllers/WrenchWallet.php index 326ce04b..14a8a09b 100644 --- a/www-api/app/Controllers/WrenchWallet.php +++ b/www-api/app/Controllers/WrenchWallet.php @@ -61,13 +61,15 @@ class WrenchWallet extends BaseController } public function requestVirtualCard(){ - + log_message('critical', "WrenchWallet::requestVirtualCard Path GATE ***"); $raw_json = file_get_contents('php://input'); $in = json_decode($raw_json, true); $out=[]; $local_url = "http://".$this->micro_service_net1.":3038/create"; - $outX = $this->APIcall('POST', $local_url, ["message"=>$out]); + $out = $this->APIcall('POST', $local_url, $in); + + log_message('critical', "WrenchWallet::requestVirtualCard ********* ALL ".serialize($out) ); return $this->respond( $this->summaryReturnData($in,$out), 200);